Examples of DCWindowContext


Examples of org.eobjects.datacleaner.bootstrap.DCWindowContext

    _userPreferences = userPreferences;
    if (windowContext == null) {
      _windowContext = new LazyRef<WindowContext>() {
        @Override
        protected WindowContext fetch() {
          return new DCWindowContext(_configuration, _userPreferences);
        }
      };
    } else {
      _windowContext = ImmutableRef.of(windowContext);
    }
View Full Code Here

Examples of org.eobjects.datacleaner.bootstrap.DCWindowContext

      throw resultFuture.getErrors().get(0);
    }

    List<AnalyzerResult> list = Collections.emptyList();
    RendererFactory rendererFactory = new RendererFactory(conf.getDescriptorProvider(), null);
    DetailsResultWindow window = new DetailsResultWindow("Example", list, new DCWindowContext(conf,
        UserPreferences.getInstance()), rendererFactory);
    window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    List<AnalyzerResult> results = resultFuture.getResults();
    for (AnalyzerResult analyzerResult : results) {
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.