Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Java - Applet DrawLine (See related posts)

// Esempio di un Applet

<html>

	<head>
		<title>Sono una Applet...</title>
	</head>
	
	<body>
		<applet code="Example01.class" width="300" height="300">Non sono supportata...</applet>
	</body>
	
</html>


import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionListener;

import javax.swing.JApplet;

public class Example01 extends JApplet implements MouseMotionListener
{
	public void init()
	{
		this.addMouseMotionListener(this);
	}
	
	public void start()
	{
		this.setBackground(Color.YELLOW);
		this.repaint(); // Ridisegna lo schermo
	}
	
	public void paint(Graphics g)
	{
		super.paint(g);
	}

	public void mouseDragged(MouseEvent e)
	{
		
	}

	public void mouseMoved(MouseEvent e)
	{
		Graphics g = this.getGraphics();
		
		g.drawLine(e.getX(), e.getY(), e.getX(), e.getY());
	}
}

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts