Examples of PersistentEditableComboBox


Examples of org.freeplane.core.ui.components.PersistentEditableComboBox

  private static final String BROWSE_URL_STORAGE_KEY = "browse_url_storage";
//   final private ModeController modeController;
  private PersistentEditableComboBox urlfield = null;

  public BToolbarContributor() {
    urlfield = new PersistentEditableComboBox(BROWSE_URL_STORAGE_KEY, 20);
    urlfield.addActionListener(new ActionListener() {
      public void actionPerformed(final ActionEvent e) {
        final String urlText = urlfield.getText();
        if ("".equals(urlText) || e.getActionCommand().equals("comboBoxEdited")) {
          return;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.