Package org.eobjects.analyzer.reference

Examples of org.eobjects.analyzer.reference.Dictionary


    Arrays.sort(names);

    final Icon icon = imageManager.getImageIcon(IconUtils.DICTIONARY_IMAGEPATH);

    for (final String name : names) {
      final Dictionary dictionary = _catalog.getDictionary(name);

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


    final String[] dictionaryNames = referenceDataCatalog.getDictionaryNames();
    for (String name : dictionaryNames) {
      _comboBox.addItem(referenceDataCatalog.getDictionary(name));
    }

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

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

TOP

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

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.