Package org.eobjects.analyzer.reference

Examples of org.eobjects.analyzer.reference.SynonymCatalog


    final String[] synonymCatalogNames = referenceDataCatalog.getSynonymCatalogNames();
    for (String name : synonymCatalogNames) {
      _comboBox.addItem(referenceDataCatalog.getSynonymCatalog(name));
    }

    SynonymCatalog currentValue = (SynonymCatalog) beanJobBuilder.getConfiguredProperty(propertyDescriptor);
    _comboBox.setSelectedItem(currentValue);

    _comboBox.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
View Full Code Here


    Arrays.sort(names);

    final Icon icon = imageManager.getImageIcon("images/model/synonym.png");

    for (final String name : names) {
      final SynonymCatalog synonymCatalog = _catalog.getSynonymCatalog(name);

      final DCLabel synonymCatalogLabel = DCLabel.dark("<html><b>" + name + "</b><br/>"
          + getDescription(synonymCatalog) + "</html>");
      synonymCatalogLabel.setIcon(icon);
View Full Code Here

TOP

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

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.