Package net.sourceforge.wampum.gui

Examples of net.sourceforge.wampum.gui.TextListener


      clearButton.setActionCommand("clearButton");
      clearButton.addActionListener(this);
      deleteButton.setActionCommand("deleteButton");
      deleteButton.addActionListener(this);
     
      TextListener nameListener = new TextListener() {
        public void somethingHappened(DocumentEvent event) {
          checkButtonStatus();
        }
      };
      title.getDocument().addDocumentListener(nameListener);
View Full Code Here


      deleteButton.setActionCommand("deleteButton");
      deleteButton.addActionListener(this);
      mergeButton.setActionCommand("mergeButton");
      mergeButton.addActionListener(this);
     
      TextListener nameListener = new TextListener() {
       
        public void somethingHappened(DocumentEvent event) {
          checkButtonStatus();
        }
      };
View Full Code Here

TOP

Related Classes of net.sourceforge.wampum.gui.TextListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.