Package org.eobjects.datacleaner.widgets

Examples of org.eobjects.datacleaner.widgets.ChangeRequirementButton


    super("images/window/analyzer-tab-background.png", analyzerJobBuilder, propertyWidgetFactory);
    _analyzerJobBuilder = analyzerJobBuilder;

    init();

    _requirementButton = new ChangeRequirementButton(analyzerJobBuilder);

    _buttonPanel = new DCPanel();
    _buttonPanel.setLayout(new FlowLayout(FlowLayout.RIGHT, 0, 0));
    if (displayRequirementButton) {
      addToButtonPanel(_requirementButton);
View Full Code Here


  public FilterJobBuilderPanel(FilterJobBuilder<?, ?> filterJobBuilder, PropertyWidgetFactory propertyWidgetFactory) {
    _filterJobBuilder = filterJobBuilder;
    _propertyWidgetFactory = propertyWidgetFactory;

    _requirementButton = new ChangeRequirementButton(filterJobBuilder);
    _descriptor = _filterJobBuilder.getDescriptor();

    final JButton removeButton = new JButton("Remove filter", imageManager.getImageIcon("images/actions/remove.png",
        IconUtils.ICON_SIZE_SMALL));
    removeButton.addActionListener(new ActionListener() {
View Full Code Here

    _previewButton = new JButton("Preview data", imageManager.getImageIcon("images/actions/preview_data.png"));
    _previewButton.addActionListener(new PreviewTransformedDataActionListener(_windowContext, this,
        getAnalysisJobBuilder(), _transformerJobBuilder));

    _requirementButton = new ChangeRequirementButton(transformerJobBuilder);

    final DCPanel bottomButtonPanel = new DCPanel();
    bottomButtonPanel.setLayout(new FlowLayout(FlowLayout.RIGHT, 4, 0));
    bottomButtonPanel.add(_writeOutputButton);
    bottomButtonPanel.add(_previewButton);
View Full Code Here

TOP

Related Classes of org.eobjects.datacleaner.widgets.ChangeRequirementButton

Copyright © 2018 www.massapicom. 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.