Examples of MultiLineLabel


Examples of org.mevenide.idea.util.ui.MultiLineLabel

                },
                pTitle,
                ListSelectionModel.SINGLE_SELECTION);

        if (pLabel != null && pLabel.trim().length() > 0)
            dlg.addToDialog(new MultiLineLabel(pLabel), BorderLayout.PAGE_START);

        dlg.setModal(true);
        dlg.setResizable(true);
        dlg.show();
View Full Code Here

Examples of org.mevenide.idea.util.ui.MultiLineLabel

                repoUrls,
                SIMPLE_TO_STRING_ASPECT,
                title,
                ListSelectionModel.SINGLE_SELECTION);

        dlg.addToDialog(new MultiLineLabel(label), BorderLayout.PAGE_START);
        dlg.setModal(true);
        dlg.setResizable(true);
        dlg.show();

        if (!dlg.isOK())
View Full Code Here

Examples of org.rstudio.core.client.widget.MultiLineLabel

         objects = "all objects";
      else if (numObjects_ == 1)
         objects = "1 object";
      else
         objects = numObjects_ + " objects";
      Label label = new MultiLineLabel(
            "Are you sure you want to remove "  + objects + " from the " +
            "environment? This operation cannot be undone.");
      label.setStylePrimaryName(
            ThemeResources.INSTANCE.themeStyles().dialogMessage());
      horizontalPanel.add(label);
      panel.add(horizontalPanel);
     
      // add include hidden option
View Full Code Here

Examples of org.xnap.gui.component.MultiLineLabel

    JPanel jpStartup = new JPanel(new GridBagLayout());
    jpStartup.setBorder(GUIHelper.createDefaultBorder
              (XNap.tr("Server List")));
    GridBagHelper.add(this, jpStartup);

    GridBagHelper.add(jpStartup, new MultiLineLabel(XNap.tr("XNap can fetch lists of OpenNap server addresses. These lists are provided by service providers that are not affiliated with the XNap project.")));
   
    serverListTextArea = new JTextArea(napPrefs.getNapigatorURL(), 5, 40);
    GridBagHelper.add(jpStartup, new JScrollPane(serverListTextArea));
   
        autoFetchNapigatorIntervalTextField = new ValidatedTextField
View Full Code Here

Examples of pdfdb.gui.customcomponents.MultilineLabel

        super.setPreferredSize(new Dimension(450, 350));
        super.setResizable(false);

        pane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
        pane.setLayout(new BorderLayout());
        pane.add(new JScrollPane(new MultilineLabel(MESSAGE)),
                BorderLayout.CENTER);
        pane.add(this.topPanel, BorderLayout.NORTH);
        pane.add(this.bottomPanel, BorderLayout.SOUTH);

        bottomPanel.getPasswordField().setText("");
View Full Code Here

Examples of wicket.markup.html.basic.MultiLineLabel

      String projectName = project.getName();
      Label projectNameLabel = new Label("projectName", projectName);
      item.add(projectNameLabel);

      String projectObjective = project.getObjective();
      MultiLineLabel projectObjectiveLabel = new MultiLineLabel(
          "projectObjective", projectObjective);
      item.add(projectObjectiveLabel);

      String projectDescription = project.getDescription();
      MultiLineLabel projectDescriptionLabel = new MultiLineLabel(
          "projectDescription", projectDescription);
      item.add(projectDescriptionLabel);

      App app = (App) getApplication();
      Topics topics = (Topics) app.getEntry("Topics");
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.