Package org.eobjects.analyzer.reference

Examples of org.eobjects.analyzer.reference.TextFileSynonymCatalog


    performAssertions(propertyWidgetFactory, "Dictionary array property", MultipleDictionariesPropertyWidget.class,
        new Dictionary[0], new Dictionary[] { new SimpleDictionary("f", "fo", "foo"),
            new SimpleDictionary("b", "ba", "bar") });

    performAssertions(propertyWidgetFactory, "Synonym catalog property", SingleSynonymCatalogPropertyWidget.class, null,
        new TextFileSynonymCatalog("foo", new File("foobar"), true, "UTF8"));

    performAssertions(propertyWidgetFactory, "Synonym catalog array property",
        MultipleSynonymCatalogsPropertyWidget.class, new SynonymCatalog[0], new SynonymCatalog[] {
            new TextFileSynonymCatalog("foo", new File("foo"), true, "UTF8"),
            new TextFileSynonymCatalog("bar", new File("bar"), true, "UTF8") });

  }
View Full Code Here


        if (StringUtils.isNullOrEmpty(filename)) {
          JOptionPane.showMessageDialog(TextFileSynonymCatalogDialog.this, "Please select a character encoding");
          return;
        }

        TextFileSynonymCatalog sc = new TextFileSynonymCatalog(name, filename, _caseSensitiveCheckBox.isSelected(),
            encoding);

        if (_originalsynonymCatalog != null) {
          _catalog.removeSynonymCatalog(_originalsynonymCatalog);
        }
View Full Code Here

TOP

Related Classes of org.eobjects.analyzer.reference.TextFileSynonymCatalog

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.