Package org.eobjects.datacleaner.widgets

Examples of org.eobjects.datacleaner.widgets.HelpIcon


      public void actionPerformed(ActionEvent e) {
        new RegexSwapDialog(_catalog, _windowContext).setVisible(true);
      }
    });

    final HelpIcon helpIcon = new HelpIcon(
        "<b>String patterns</b><br>"
            + "String pattern provides a way to match string values against patterns. This is often useful for validation or categorization of values in semi- or unstructured columns.");

    final DCPanel panel = DCPanel.flow(simpleStringPatternButton, regexStringPatternButton,
        regexSwapStringPatternButton, Box.createHorizontalStrut(100), helpIcon);
View Full Code Here


        DatastoreDictionaryDialog dialog = injector.getInstance(DatastoreDictionaryDialog.class);
        dialog.open();
      }
    });

    final HelpIcon helpIcon = new HelpIcon("<b>Dictionaries</b><br>"
        + "A dictionary is a set of values that grouped together represent a named set of values,"
        + "for example valid values or blacklisted values for a given type of data.<br>"
        + "Dictionaries can be used throughout DataCleaner for filtering, matching and more.");

    final DCPanel panel = DCPanel.flow(textFileDictionaryButton, simpleDictionaryButton, datastoreDictionaryButton,
View Full Code Here

        DatastoreSynonymCatalogDialog dialog = injector.getInstance(DatastoreSynonymCatalogDialog.class);
        dialog.setVisible(true);
      }
    });

    final HelpIcon helpIcon = new HelpIcon("<b>Synonym catalogs</b><br>"
        + "A synonym catalog is reference data used for replacing odd values with correct ones. "
        + "A synonym in this sense can also be eg. a standardized value or a code for a given entity.<br>"
        + "Synonyms can be used throughout DataCleaner for matching, replacing values and more..");

    final DCPanel panel = DCPanel.flow(textFileSynonymCatalogButton, datastoreSynonymCatalogButton,
View Full Code Here

    TaskRunner taskRunner = _configuration.getTaskRunner();
    WidgetUtils.addToGridBag(new JLabel("Task runner type:"), panel, 0, row);
    WidgetUtils.addToGridBag(new JLabel(taskRunner.getClass().getSimpleName()), panel, 1, row);
    WidgetUtils
        .addToGridBag(
            new HelpIcon(
                "The task runner is used to determine the execution strategy of Analysis jobs. The most common strategy for this is to use a multithreaded task runner which will spawn several threads to enable concurrent execution of jobs."),
            panel, 2, row);

    if (taskRunner instanceof MultiThreadedTaskRunner) {
      int numThreads = ((MultiThreadedTaskRunner) taskRunner).getNumThreads();

      if (numThreads > 0) {
        row++;
        WidgetUtils.addToGridBag(new JLabel("Thread pool size:"), panel, 0, row);
        WidgetUtils.addToGridBag(new JLabel("" + numThreads), panel, 1, row);
      }
    }

    row++;
    StorageProvider storageProvider = _configuration.getStorageProvider();
    WidgetUtils.addToGridBag(new JLabel("Storage provider type:"), panel, 0, row);
    WidgetUtils.addToGridBag(new JLabel(storageProvider.getClass().getSimpleName()), panel, 1, row);
    WidgetUtils
        .addToGridBag(
            new HelpIcon(
                "The storage provider is used for staging data during and after analysis, typically to store the results on disk in stead of holding everything in memory."),
            panel, 2, row);

    row++;
    DCLabel descriptionLabel = DCLabel
View Full Code Here

TOP

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

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.