Package fr.soleil.comete.widget

Examples of fr.soleil.comete.widget.StringComboBox


    super();
    addWidgetListener(this);
  }
  @Override
  public AbstractWidget<?, String> initWidget() {
    return new StringComboBox();
  }
View Full Code Here


  private final TangoWidgetHelper m_cmdhelper = new TangoWidgetHelper();

  @Override
  public AbstractWidget<?, String> initWidget() {
    return new StringComboBox();
  }
View Full Code Here

  private static final long serialVersionUID = -3730435822775804119L;
  private final TangoWidgetHelper m_cmdhelper = new TangoWidgetHelper();

  @Override
  public AbstractWidget<?, String> initWidget() {
    return new StringComboBox();
  }
View Full Code Here

        return epsilonViewer;
    }

    private StringComboBox getFittingFunctionTypeEditor() {
        if (functionTypeEditor == null) {
            functionTypeEditor = new StringComboBox();
            functionTypeEditor.setToolTipText(FUNCTION_TYPE_INFO);
            functionTypeEditor.setOptionList(new String[] { Parameters.GAUSSIAN,
                    Parameters.GAUSSIANB, Parameters.LORENTZIAN, Parameters.LORENTZIANB,
                    Parameters.SIGMOID, Parameters.SIGMOIDB, Parameters.MEANWITHTHESHOLD });
            functionTypeEditor.setValueList(new String[] { Parameters.GAUSSIAN,
View Full Code Here

        this.currentDataModel = currentDataModel;
    }

    @Override
    protected void initAndAddOtherComponentsInMainPanel() {
        dataModelSelectionComboBox = new StringComboBox();
        dataModelSelectionTitle = new JLabel("Current datamodel:");
        dataModelDocumentListener = new DocumentListener() {
            @Override
            public void removeUpdate(DocumentEvent e) {
                updateCombo(true);
View Full Code Here

        deviceSelectionButton = new JButton("Choose devices to save...");
        deviceSelectionButton.setEnabled(false);
        deviceSelectionButton.setToolTipText("Not yet available");

        configSelectionTitle = new JLabel("Current config:");
        configSelectionComboBox = new StringComboBox();
        configSelectionComboBoxListener = new DocumentListener() {
            @Override
            public void removeUpdate(DocumentEvent e) {
                updateCombo(true);
            }
View Full Code Here

TOP

Related Classes of fr.soleil.comete.widget.StringComboBox

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.