Examples of PropertiesPanel


Examples of com.atomikos.swing.PropertiesPanel

                          messages_.getString ( "forgetNoArchiveOption" ),
                          messages_.getString ( "forgetAndArchiveOption" ),
                          messages_.getString ( "keepInLogOption" ) };
                  Vector descriptors = getStateDescriptors ( rec );
                  StateTableModel table = new StateTableModel ( descriptors );
                  PropertiesPanel panel = new PropertiesPanel ( table, true );
                  String outcome = null;
                  if ( rec.wasCommitted () )
                      outcome = messages_.getString ( "commitOutcomeMessage" );
                  else
                      outcome = messages_
                              .getString ( "rollbackOutcomeMessage" );
                  panel.addPropertyListener ( pListener_ );
                  int n = JOptionPane.showOptionDialog ( frame_, panel
                          .getPanel (), outcome + id.toString (),
                          JOptionPane.YES_NO_CANCEL_OPTION,
                          JOptionPane.QUESTION_MESSAGE, null, options,
                          options[2] );
View Full Code Here

Examples of com.atomikos.swing.PropertiesPanel

                          messages_.getString ( "forgetNoArchiveOption" ),
                          messages_.getString ( "forgetAndArchiveOption" ),
                          messages_.getString ( "keepInLogOption" ) };
                  Vector descriptors = getStateDescriptors ( rec );
                  StateTableModel table = new StateTableModel ( descriptors );
                  PropertiesPanel panel = new PropertiesPanel ( table, true );
                  String outcome = null;
                  if ( rec.wasCommitted () )
                      outcome = messages_.getString ( "commitOutcomeMessage" );
                  else
                      outcome = messages_
                              .getString ( "rollbackOutcomeMessage" );
                  panel.addPropertyListener ( pListener_ );
                  int n = JOptionPane.showOptionDialog ( frame_, panel
                          .getPanel (), outcome + id.toString (),
                          JOptionPane.YES_NO_CANCEL_OPTION,
                          JOptionPane.QUESTION_MESSAGE, null, options,
                          options[2] );
View Full Code Here

Examples of com.atomikos.swing.PropertiesPanel

                          messages_.getString ( "forgetNoArchiveOption" ),
                          messages_.getString ( "forgetAndArchiveOption" ),
                          messages_.getString ( "keepInLogOption" ) };
                  Vector descriptors = getStateDescriptors ( rec );
                  StateTableModel table = new StateTableModel ( descriptors );
                  PropertiesPanel panel = new PropertiesPanel ( table, true );
                  String outcome = null;
                  if ( rec.wasCommitted () )
                      outcome = messages_.getString ( "commitOutcomeMessage" );
                  else
                      outcome = messages_
                              .getString ( "rollbackOutcomeMessage" );
                  panel.addPropertyListener ( pListener_ );
                  int n = JOptionPane.showOptionDialog ( frame_, panel
                          .getPanel (), outcome + id.toString (),
                          JOptionPane.YES_NO_CANCEL_OPTION,
                          JOptionPane.QUESTION_MESSAGE, null, options,
                          options[2] );
View Full Code Here

Examples of com.atomikos.swing.PropertiesPanel

        for ( int i = 0 ; i < data.length ; i++ ) {
             data_.addElement ( data[i] );
        }
        IndexedPropertyTableModel table =
            new IndexedPropertyTableModel ( data_ , property.getName() );
        panel_ = new PropertiesPanel ( table , false );
        panel_.getPanel().setToolTipText ( property.getDescription() );
        panel_.addPropertyListener ( this );
    }
View Full Code Here

Examples of com.atomikos.swing.PropertiesPanel

        for ( int i = 0 ; i < data.length ; i++ ) {
             data_.addElement ( data[i] );
        }
        IndexedPropertyTableModel table =
            new IndexedPropertyTableModel ( data_ , property.getName() );
        panel_ = new PropertiesPanel ( table , false );
        panel_.getPanel().setToolTipText ( property.getDescription() );
        panel_.addPropertyListener ( this );
    }
View Full Code Here

Examples of com.atomikos.swing.PropertiesPanel

        for ( int i = 0 ; i < data.length ; i++ ) {
             data_.addElement ( data[i] );
        }
        IndexedPropertyTableModel table =
            new IndexedPropertyTableModel ( data_ , property.getName() );
        panel_ = new PropertiesPanel ( table , false );
        panel_.getPanel().setToolTipText ( property.getDescription() );
        panel_.addPropertyListener ( this );
    }
View Full Code Here

Examples of com.pcmsolutions.device.EMU.E4.gui.device.PropertiesPanel

        final DesktopName name = new DesktopName(PropertiesPanel.class, SystemPathFactory.providePropertiesPath());
        final ViewPath vp = new ViewPath(ZDesktopManager.dockPROPERTIES, name);
        return new ViewInstance() {
            public JComponent getView() throws ComponentGenerationException {
                try {
                    PropertiesPanel pp = new PropertiesPanel(ZoeosPreferences.getPropertyList(), Zoeos.getInstance());
                    return pp;
                } catch (Exception e) {
                    throw new ComponentGenerationException(e.getMessage());
                }
            }
View Full Code Here

Examples of com.pcmsolutions.device.EMU.E4.gui.device.PropertiesPanel

            public JComponent getView() throws ComponentGenerationException {
                try {
                    ArrayList props = new ArrayList();
                    props.addAll(device.getDevicePreferences().getPropertyList());
                    props.addAll(device.getRemotePreferences().getPropertyList());
                    PropertiesPanel pp = new PropertiesPanel(props, device);
                    return pp;
                } catch (Exception e) {
                    throw new ComponentGenerationException(e.getMessage());
                }
            }
View Full Code Here

Examples of org.aperteworkflow.editor.ui.property.PropertiesPanel

      for (PermissionDefinition perm : widgetItem.getPermissions()) {
                permissionDefinitions.add(perm);
      }
    }

        widgetPropertiesPanel = new PropertiesPanel();
        widgetPropertiesPanel.init(widgetItem.getClassInfo());
        widgetPropertiesPanel.refreshForm(false, properties);
  }
View Full Code Here

Examples of org.aperteworkflow.editor.ui.property.PropertiesPanel

    } else {
            TabSheet ts = new TabSheet();
            ts.setWidth("100%");
            if (widget.hasProperties()) {
                if (reloadProperties) {
                    PropertiesPanel propertiesPanel = new PropertiesPanel();
                    propertiesPanel.init(widget.getWidgetItem().getClassInfo());
                    propertiesPanel.refreshForm(false, widget.getProperties());
                    widget.setWidgetPropertiesPanel(propertiesPanel);
                }
                ts.addTab(widget.getWidgetPropertiesPanel(), messages.getMessage("form.properties"));
            }
            if (widget.hasPermissions()) {
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.