windows-nt/Source/XPSP1/NT/inetsrv/msmq/sdk/samples/javadraw/stroke.java

19 lines
253 B
Java
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
import java.util.Vector;
//
//
// Stroke-
// This class is used to hold line coordinates.
// The line is held as a vector of points.
//
//
public class Stroke extends Vector implements java.io.Serializable
{
public Stroke()
{
super(5,5);
}
}