Examples of TextConfigDescriptionEntry


Examples of org.pentaho.reporting.tools.configeditor.model.TextConfigDescriptionEntry

        entry = ece;
        break;
      }
      default:
      {
        final TextConfigDescriptionEntry te = new TextConfigDescriptionEntry(keyNameField.getText());
        te.setDescription(descriptionField.getText());
        te.setGlobal(globalField.isSelected());
        te.setHidden(hiddenField.isSelected());
        entry = te;
        break;
      }
    }
View Full Code Here

Examples of org.pentaho.reporting.tools.configeditor.model.TextConfigDescriptionEntry

     *
     * @param e not used.
     */
    public void actionPerformed(final ActionEvent e)
    {
      final TextConfigDescriptionEntry te =
          new TextConfigDescriptionEntry
              (getResources().getString("config-description-editor.unnamed-entry")); //$NON-NLS-1$
      final ConfigDescriptionModel model = getModel();
      model.add(te);
      getEntryList().setSelectedIndex(model.getSize() - 1);
    }
View Full Code Here

Examples of org.pentaho.reporting.tools.configeditor.model.TextConfigDescriptionEntry

        entry = ece;
        break;
      }
      default:
      {
        final TextConfigDescriptionEntry te = new TextConfigDescriptionEntry(keyNameField.getText());
        te.setDescription(descriptionField.getText());
        te.setGlobal(globalField.isSelected());
        te.setHidden(hiddenField.isSelected());
        entry = te;
        break;
      }
    }
View Full Code Here

Examples of org.pentaho.reporting.tools.configeditor.model.TextConfigDescriptionEntry

     *
     * @param e not used.
     */
    public void actionPerformed(final ActionEvent e)
    {
      final TextConfigDescriptionEntry te =
          new TextConfigDescriptionEntry
              (getResources().getString("config-description-editor.unnamed-entry")); //$NON-NLS-1$
      final ConfigDescriptionModel model = getModel();
      model.add(te);
      getEntryList().setSelectedIndex(model.getSize() - 1);
    }
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.