Package org.eobjects.analyzer.reference

Examples of org.eobjects.analyzer.reference.DatastoreSynonymCatalog


      return synonymCatalog.getDescription();
    }
    if (synonymCatalog instanceof TextFileSynonymCatalog) {
      return ((TextFileSynonymCatalog) synonymCatalog).getFilename();
    } else if (synonymCatalog instanceof DatastoreSynonymCatalog) {
      DatastoreSynonymCatalog datastoreSynonymCatalog = (DatastoreSynonymCatalog) synonymCatalog;
      return datastoreSynonymCatalog.getDatastoreName() + ": " + datastoreSynonymCatalog.getMasterTermColumnPath();
    }
    return "";
  }
View Full Code Here


        }

        Column selectedItem = _masterTermColumnComboBox.getSelectedItem();
        String[] synonymColumnNames = _synonymColumnsPanel.getColumnNames();

        DatastoreSynonymCatalog dataStoreBasedSynonymCatalog = new DatastoreSynonymCatalog(name, nameOfDatastore,
            selectedItem.getQualifiedLabel(), synonymColumnNames);

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

TOP

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

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.