Package fr.soleil.comete.widget

Examples of fr.soleil.comete.widget.StringMatrixComboBoxViewer


        incFileNameIndexButton = generateStringButton();
        incFileNameIndexButton.setText("Force file name index incrementation");
        incFileNameIndexButton.setConfirmation(true);

        hiddenFilesViewer = new StringMatrixComboBoxViewer();
        hiddenFilesViewer.setExecuteDaoOnInitialization(false);

        GridBagConstraints libDataStorageVersionTitleConstraints = new GridBagConstraints();
        libDataStorageVersionTitleConstraints.fill = GridBagConstraints.HORIZONTAL;
        libDataStorageVersionTitleConstraints.gridx = 0;
View Full Code Here


        hiddenErrorLabel = new Label();
        hiddenStateLabel = new Label();
        hiddenTechnicalDataLabel = new Label();
        hiddenPostRecordingCommandButton = new StringButton();
        hiddenPostRecordingCommandButton.setDisplayDataInButton(true);
        hiddenDataModelsViewer = new StringMatrixComboBoxViewer();
        hiddenDataModelsViewer.setExecuteDaoOnInitialization(true);

        hiddenScriptListViewer = new StringMatrixComboBoxViewer();
        hiddenTabInfoViewer = new StringMatrixComboBoxViewer();
        hiddenTabInfoViewer.setExecuteDaoOnInitialization(true);

        warningLevelListener = new IWidgetListener() {
            @Override
            public void stringValueChanged(String value) {
View Full Code Here

        };
        deleteNexusFilesButton.getComponent().setButtonLook(true);
        deleteNexusFilesButton.setText("Delete last recorded NeXus files");
        deleteNexusFilesButton.setConfirmation(true);

        hiddenFilesViewer = new StringMatrixComboBoxViewer();
        hiddenFilesViewer.setExecuteDaoOnInitialization(false);

        GridBagConstraints libDataStorageVersionTitleConstraints = new GridBagConstraints();
        libDataStorageVersionTitleConstraints.fill = GridBagConstraints.HORIZONTAL;
        libDataStorageVersionTitleConstraints.gridx = 0;
View Full Code Here

        hiddenErrorLabel = new Label();
        hiddenStateLabel = new Label();
        hiddenTechnicalDataLabel = new Label();
        hiddenPostRecordingCommandButton = new StringButton();
        hiddenPostRecordingCommandButton.setDisplayDataInButton(true);
        hiddenDataModelsViewer = new StringMatrixComboBoxViewer();
        hiddenDataModelsViewer.setExecuteDaoOnInitialization(true);

        hiddenScriptListViewer = new StringMatrixComboBoxViewer();
        hiddenTabInfoViewer = new StringMatrixComboBoxViewer();
        hiddenTabInfoViewer.setExecuteDaoOnInitialization(true);

        warningLevelListener = new IWidgetListener() {
            @Override
            public void stringValueChanged(String value) {
View Full Code Here

    }

    protected void initSymbolPanel() {
        symbolPanel = new JPanel(new GridBagLayout());

        symbolListComboBox = new StringMatrixComboBoxViewer();
        symbolListComboBox.setExecuteDaoOnInitialization(true);

        insertSymbolButton = new JButton("Insert");
        insertSymbolButton.addActionListener(new ActionListener() {
            @Override
View Full Code Here

                else {
                    setParametersButton.setEnabled(false);
                }
            }
        };
        tabParametersViewer = new StringMatrixComboBoxViewer() {
            @Override
            public void switchDAOFactory(String factoryClassName) {
                Object item = scriptSelectionComboBox.getSelectedItem();
                if (item != null) {
                    StringMatrix parameter = new StringMatrix();
View Full Code Here

TOP

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

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.