Examples of TitledBorder


Examples of javax.swing.border.TitledBorder

        predecessorsTable.getColumnModel().getColumn(3).setPreferredWidth(40);

        predecessorsScrollPane = new JScrollPane(predecessorsTable);

        JPanel secondPredecessorsPanel = new JPanel();
        secondPredecessorsPanel.setBorder(new TitledBorder(new EtchedBorder(),
                language.getText("predecessors")));
        secondPredecessorsPanel.add(predecessorsScrollPane);

        JButton bremove = new TestGanttRolloverButton(new ImageIcon(getClass()
                .getResource("/icons/delete_16.gif")));
View Full Code Here

Examples of javax.swing.border.TitledBorder

      WidgetUtils.addToGridBag(propertyWidget.getWidget(), this, 1, i, 1, 2, GridBagConstraints.NORTHWEST, 4);
      i = i + 2;
    }

    final DCPanel outcomePanel = new DCPanel();
    outcomePanel.setBorder(new TitledBorder("Outcomes"));

    final Set<String> categoryNames = _descriptor.getOutcomeCategoryNames();
    for (final String categoryName : categoryNames) {
      final JButton outcomeButton = new JButton(categoryName, imageManager.getImageIcon(
          "images/component-types/filter-outcome.png", IconUtils.ICON_SIZE_SMALL));
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.