/* * Created on Apr 14, 2006 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package implementation.source.java.nodes; import java.awt.Shape; import java.awt.Stroke; import edu.umd.cs.piccolo.nodes.PPath; /** * @author Timothy Ober * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class DFEndpoint extends PPath { /** * */ public DFEndpoint() { super(); } /** * @param arg0 */ public DFEndpoint(Shape arg0) { super(arg0); } /** * @param arg0 * @param arg1 */ public DFEndpoint(Shape arg0, Stroke arg1) { super(arg0, arg1); } }