Revision: 1773
Updated Code
at November 10, 2006 00:05 by whitetiger
Updated Code
<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());
}
}
Revision: 1772
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at November 9, 2006 23:55 by whitetiger
Initial Code
<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());
}
}
Initial URL
Initial Description
Initial Title
Java - Applet DrawLine
Initial Tags
css, javascript, java, html, rails, ruby, web
Initial Language
Java