Examples of PropertiesPanel


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

    vll.setWidth(100, Sizeable.UNITS_PERCENTAGE);
        vll.addComponent(new Label(messages.getMessage("jse.instructions"), Label.CONTENT_XHTML));
    vll.setSpacing(true);

    if (stepType != null) {
            propertiesPanel = new PropertiesPanel();

            Class<?> stepClass = getStepClass(stepType);
        propertiesPanel.init(stepClass);
        propertiesPanel.refreshForm(false, getLoadedJsonData(jsonConfig));
View Full Code Here

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

        // perform validation of all the widget definitions
        Collection<?> itemIds = stepTreeContainer.getItemIds();
        for (Object itemId : itemIds) {
            WidgetItemInStep widgetInStep = (WidgetItemInStep) itemId;

            PropertiesPanel propertiesPanel = widgetInStep.getWidgetPropertiesPanel();
            if (propertiesPanel != null) {
                widgetInStep.getWidgetPropertiesPanel().ensureForm();

                PropertiesForm propertiesForm = propertiesPanel.getPropertiesForm();
                if (!propertiesForm.isValid()) {
                    I18NSource messages = I18NSource.ThreadUtil.getThreadI18nSource();
                    VaadinUtility.validationNotification(
                            application,
                            messages,
View Full Code Here

Examples of org.arch4j.ui.components.PropertiesPanel

    public void resumeBuildOnProjects() {
        getContentPanel().resumeBuildOnProjects();
    }
   
  public void launchAbout() {
        PropertiesPanel theAboutPanel = new AboutPanel();
        theAboutPanel.showDialog( this, "About" );
    }
View Full Code Here

Examples of org.damour.base.client.ui.repository.properties.PropertiesPanel

          }

          public void onSuccess(Void result) {
          }
        };
        final PropertiesPanel propertiesPanel = new PropertiesPanel(permissibleObject, null, VIEW.GENERAL);
        dialogBox.setContent(propertiesPanel);
        dialogBox.setCallback(new IDialogCallback() {
          public void okPressed() {
            propertiesPanel.apply(callback);
          }

          public void cancelPressed() {
          }
        });
View Full Code Here

Examples of org.netbeans.modules.nodejs.PropertiesPanel

        actions.addAll( Lookups.forPath( "Project/NodeJS/Actions" ).lookupAll( Action.class ) ); //NOI18N
        actions.add( new AbstractAction( NbBundle.getMessage( RootNode.class, "PROPERTIES" ) ) { //NOI18N
            @Override
            public void actionPerformed ( ActionEvent e ) {
                Project project = getLookup().lookup( Project.class );
                new PropertiesPanel( project.getLookup().lookup( NodeJSProjectProperties.class ) ).showDialog();
            }
        } );
        final LibrariesResolver resolver = getLookup().lookup( Project.class ).getLookup().lookup( LibrariesResolver.class );
        if (resolver.hasMissingLibraries()) {
            actions.add(new AbstractAction(NbBundle.getMessage(RootNode.class, "RESOLVE_LIBRARIES")){ //NOI18N
View Full Code Here

Examples of org.openxri.admin.components.PropertiesPanel

      protected void populateItem(ListItem item) {

        Stage stage = (Stage) item.getModelObject();

        item.add(new Label("name", stage.getClass().getName()));
        item.add(new PropertiesPanel("properties", new Model(stage.getProperties())));
      }
    });
  }
View Full Code Here

Examples of org.openxri.admin.components.PropertiesPanel

        item.add(new Label("interface", clazz.getName()));
      }
    });
   
    this.add(new PropertiesPanel("properties", new Model(component.getProperties())));
  }
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.