Package net.sf.robocode.ui.util

Examples of net.sf.robocode.ui.util.LimitedClassnameDocument


    return webpageHelpLabel;
  }

  public JTextField getTeamNameField() {
    if (teamNameField == null) {
      LimitedDocument doc = new LimitedClassnameDocument(1, 32);

      teamNameField = new JTextField(doc, null, 32);
      doc.addDocumentListener(eventHandler);
    }
    return teamNameField;
  }
View Full Code Here

TOP

Related Classes of net.sf.robocode.ui.util.LimitedClassnameDocument

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.