import java.applet.*;
import java.awt.*;

/* This class exists so that demo.html has a place other than within the table
 * to complain about a lack of Java support.  If it's going to exist, it might
 * as well do *something*.
 */

public class HLine extends Applet {
	public HLine() {
	} 

	public void init() {
		setBackground(Color.white);
	}

	public void start() {
		repaint();
	}

	public void stop() {
	}

	public void paint(Graphics g) {
		Rectangle r= g.getClipBounds();

		g.setColor(Color.black);
		
		g.drawLine(0,r.height/2,r.width,r.height/2);
	}
}



