Examples of show()


Examples of org.guvnor.structure.client.file.RenamePopup.show()

                                                                                                                                                               details.getNewFileName(),
                                                                                                                                                               details.getCommitMessage() );
                                                               }
                                                           } );

                popup.show();
            }
        } ).get( URIUtil.encode( uri ) );
    }

    public void assetDeleteEvent( String uri ) {
View Full Code Here

Examples of org.gwt.mosaic.ui.client.LayoutPopupPanel.show()

            popup.setAnimationEnabled(true);
            popup.setSize("240px", "130px");
            HTML html = new HTML(sb.toString());
            html.setStyleName("bpm-user-info-popup");
            popup.add(html);
            popup.show();
          }
        }
    );

View Full Code Here

Examples of org.gwtlib.client.table.ui.PagingTable.show()

      checkbox.setValue(true);
      hpanel.add(checkbox);
      final int ii = i;
      checkbox.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
          table.show(ii, checkbox.getValue());
          table.update();
        }
      });
    }
    grid.setWidget(1, 0, hpanel);
View Full Code Here

Examples of org.intellij.sonar.configuration.LocalAnalysisScriptConfigurable.show()

  }

  protected LocalAnalysisScriptConfigurable showLocalAnalysisScriptConfigurableDialog(LocalAnalysisScript localAnalysisScript) {
    final LocalAnalysisScriptConfigurable dlg = new LocalAnalysisScriptConfigurable(myProject);
    if (null != localAnalysisScript) dlg.setValuesFrom(localAnalysisScript);
    dlg.show();
    return dlg;
  }
}
View Full Code Here

Examples of org.intellij.sonar.configuration.ResourcesSelectionConfigurable.show()

          @Override
          public void run(AnActionButton anActionButton) {
            final String selectedSonarServerName = mySonarServersView.getSelectedItem();
            if (!NO_SONAR.equals(selectedSonarServerName)) {
              ResourcesSelectionConfigurable dlg = new ResourcesSelectionConfigurable(myProject, selectedSonarServerName);
              dlg.show();
              if (dlg.isOK()) {
                final java.util.List<Resource> selectedSonarResources = dlg.getSelectedSonarResources();
                final java.util.List<Resource> currentSonarResources = mySonarResourcesTable.getItems();

                Set<Resource> mergedSonarResourcesAsSet = new TreeSet<Resource>(new Comparator<Resource>() {
View Full Code Here

Examples of org.intellij.sonar.configuration.SonarServerConfigurable.show()

  }

  protected SonarServerConfigurable showSonarServerConfigurableDialog(SonarServerConfig oldSonarServerConfigBean) {
    final SonarServerConfigurable dlg = new SonarServerConfigurable(myProject);
    if (null != oldSonarServerConfigBean) dlg.setValuesFrom(oldSonarServerConfigBean);
    dlg.show();
    return dlg;
  }

  protected void addActionListenersForButtons() {
View Full Code Here

Examples of org.jboss.as.console.client.widgets.popups.DefaultPopup.show()

                );

                toolsPopup.setWidth("165");
                toolsPopup.setHeight(listHeight +"");

                toolsPopup.show();
            }
        });

        HTML settings = new HTML(Console.CONSTANTS.common_label_settings());
        settings.addStyleName("footer-link");
View Full Code Here

Examples of org.jboss.dashboard.ui.components.ModalDialogComponent.show()

        modalDialog.setCloseListener(new Runnable() {
            public void run() {
                PopupPanelsHandler.this.reset();
            }
        });
        modalDialog.show();
    }

    public void actionRedrawPopup(CommandRequest request) {
        String grId = request.getRequestObject().getParameter(PopupPanelsHandler.GROUPID);
        String instanceId = request.getRequestObject().getParameter(PopupPanelsHandler.PANEL_INSTANCE_ID);
View Full Code Here

Examples of org.jbpm.formapi.client.menu.EffectsPopupPanel.show()

            public void onRightClick(RightClickEvent event) {
                EffectsPopupPanel popupPanel = new EffectsPopupPanel(
                        FBFormItem.this, true);
                if (getFormEffects() != null && !getFormEffects().isEmpty()) {
                    popupPanel.setPopupPosition(event.getX(), event.getY());
                    popupPanel.show();
                }
            }
        });
        EventHelper.addKeyboardCopyHandler(this, new ControlKeyHandler() {
            @Override
View Full Code Here

Examples of org.jbpm.formapi.common.panels.CommandPopupPanel.show()

                    public void execute() {
                        bus.fireEvent(new TaskSelectedEvent(task));
                        panel.hide();
                    }
                });
                panel.show();
            }
        });
        return row;
    }
   
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.