/* * Created on Apr 7, 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 edu.umd.cs.piccolo.nodes.PText; /** * @author Timothy Ober * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class DFLabel extends PText { /** * */ public DFLabel() { this(""); } /** * @param arg0 */ public DFLabel(String arg0) { super(arg0); addInputEventListener(new TypingActionHandler(this)); } }