Examples of VerticalLayout


Examples of org.jdesktop.swingx.VerticalLayout

    _inputColumns = new ArrayList<InputColumn<?>>();
    _firstUpdate = true;
    _dataTypeFamily = propertyDescriptor.getInputColumnDataTypeFamily();
    getAnalysisJobBuilder().getSourceColumnListeners().add(this);
    getAnalysisJobBuilder().getTransformerChangeListeners().add(this);
    setLayout(new VerticalLayout(2));

    if (propertyDescriptor.isArray()) {
      boolean allowExpressionBasedColumns = false;
      if (_dataTypeFamily == DataTypeFamily.STRING || _dataTypeFamily == DataTypeFamily.UNDEFINED) {
        allowExpressionBasedColumns = true;
View Full Code Here

Examples of org.jdesktop.swingx.VerticalLayout

        .brightMultiLine("A regex (regular expression) is a concise and flexible means for identifying strings of text of interest, such as particular characters, words, or patterns of characters. The registered regexes can be used to identify certain types of strings and validate their pattern-correctness.");
    descriptionLabel.setBorder(new EmptyBorder(10, 10, 10, 20));
    descriptionLabel.setPreferredSize(new Dimension(300, 100));

    final DCPanel mainPanel = new DCPanel();
    mainPanel.setLayout(new VerticalLayout(4));
    mainPanel.add(descriptionLabel);
    mainPanel.add(formPanel);
    mainPanel.add(testitPanel);

    return mainPanel;
View Full Code Here

Examples of org.jdesktop.swingx.VerticalLayout

  UserPreferences userPreferences;

  @Override
  public DCPanel render(final AnnotatedRowsResult result) {
    DCPanel panel = new DCPanel();
    panel.setLayout(new VerticalLayout(4));

    final DCTable table = new DCTable();
    table.setColumnControlVisible(false);

    InputColumn<?>[] highlightedColumns = result.getHighlightedColumns();
View Full Code Here

Examples of org.jdesktop.swingx.VerticalLayout

        .brightMultiLine("A text file synonym catalog is a synonym catalog based on a text file containing comma separated values where the first column represents the master term.");
    descriptionLabel.setBorder(new EmptyBorder(10, 10, 10, 20));
    descriptionLabel.setPreferredSize(new Dimension(300, 100));

    final DCPanel mainPanel = new DCPanel();
    mainPanel.setLayout(new VerticalLayout(4));
    mainPanel.add(descriptionLabel);
    mainPanel.add(formPanel);

    return mainPanel;
  }
View Full Code Here

Examples of org.jdesktop.swingx.VerticalLayout

  public AbstractMultipleCheckboxesPropertyWidget(AbstractBeanJobBuilder<?, ?, ?> beanJobBuilder,
      ConfiguredPropertyDescriptor propertyDescriptor, Class<E> itemClass) {
    super(beanJobBuilder, propertyDescriptor);
    _availableValues = new LinkedHashMap<String, E>();
    _itemClass = itemClass;
    setLayout(new VerticalLayout(2));
  }
View Full Code Here

Examples of org.jdesktop.swingx.VerticalLayout

    _injectorBuilder = injectorBuilder;
    _catalog = (MutableReferenceDataCatalog) _configuration.getReferenceDataCatalog();
    _catalog.addSynonymCatalogListener(this);

    _listPanel = new DCPanel();
    _listPanel.setLayout(new VerticalLayout(4));

    updateComponents();

    final DCLabel newSynonymCatalogsLabel = DCLabel.dark("Create new synonym catalog:");
    newSynonymCatalogsLabel.setFont(WidgetUtils.FONT_HEADER1);

    final DCLabel existingSynonymCatalogsLabel = DCLabel.dark("Existing synonym catalogs:");
    existingSynonymCatalogsLabel.setFont(WidgetUtils.FONT_HEADER1);

    setLayout(new VerticalLayout(10));
    add(newSynonymCatalogsLabel);
    add(createNewSynonymCatalogsPanel());
    add(Box.createVerticalStrut(10));
    add(existingSynonymCatalogsLabel);
    setBorder(new EmptyBorder(10, 10, 10, 0));
View Full Code Here

Examples of org.jdesktop.swingx.VerticalLayout

    final DCPanel directoriesPanel = new DCPanel().setTitledBorder("Files & directories");
    directoriesPanel.add(DCLabel.dark("Written datastores:"));
    directoriesPanel.add(saveDatastoreDirectoryField);

    final DCPanel panel = new DCPanel(WidgetUtils.BG_COLOR_BRIGHT, WidgetUtils.BG_COLOR_BRIGHTEST);
    panel.setLayout(new VerticalLayout(4));
    panel.add(userRegistrationPanel);
    panel.add(getQuickAnalysisPanel());
    panel.add(directoriesPanel);

    return panel;
View Full Code Here

Examples of org.jdesktop.swingx.VerticalLayout

      final JLabel label = new JLabel(rowCount + " rows written!",
          imageManager.getImageIcon("images/status/valid.png"), JLabel.LEFT);
      final DCPanel buttonPanel = createButtonPanel(result);

      final DCPanel panel = new DCPanel();
      panel.setLayout(new VerticalLayout(4));
      panel.add(label);
      panel.add(buttonPanel);
      panel.setBorder(border);

      return panel;
View Full Code Here

Examples of org.jdesktop.swingx.VerticalLayout

    _textArea.setEditable(false);
    _textAreaScroll = WidgetUtils.scrolleable(_textArea);
    _textAreaScroll.setBorder(new CompoundBorder(WidgetUtils.BORDER_SHADOW, WidgetUtils.BORDER_THIN));

    _progressBarPanel = new DCPanel(WidgetUtils.BG_COLOR_DARK, WidgetUtils.BG_COLOR_DARK);
    _progressBarPanel.setLayout(new VerticalLayout(4));
    _progressBarPanel.setBorder(WidgetUtils.BORDER_EMPTY);

    _loadingIcon = new LoadingIcon();
    _loadingLabel = DCLabel.bright("Preparing...");
    _loadingLabel.setBorder(new EmptyBorder(10, 10, 10, 10));
View Full Code Here

Examples of org.jdesktop.swingx.VerticalLayout

    buttonPanel.setLayout(new FlowLayout(FlowLayout.RIGHT, 0, 0));
    buttonPanel.add(saveButton);
    WidgetUtils.addToGridBag(buttonPanel, formPanel, 0, row, 2, 1);

    final DCPanel mainPanel = new DCPanel();
    mainPanel.setLayout(new VerticalLayout(4));
    mainPanel.add(descriptionLabel);
    mainPanel.add(formPanel);

    return mainPanel;
  }
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.