Package pl.net.bluesoft.rnd.processtool.model.dict.db

Examples of pl.net.bluesoft.rnd.processtool.model.dict.db.ProcessDBDictionaryItemExtension


    return itemValue.getExtensionNames();
  }

  @Override
  public DBDictionaryItemExtensionWrapper getExtensionByName(String extensionName) {
    ProcessDBDictionaryItemExtension unwrappedExt = itemValue.getExtensionByName(extensionName);
    return unwrappedExt != null ? new DBDictionaryItemExtensionWrapper(unwrappedExt) : null;
  }
View Full Code Here


*/
public class DBDictionaryItemExtensionWrapper implements DictionaryItemExtensionWrapper<ProcessDBDictionaryItemExtension> {
  private final ProcessDBDictionaryItemExtension extension;

  public DBDictionaryItemExtensionWrapper() {
    this(new ProcessDBDictionaryItemExtension());
  }
View Full Code Here

TOP

Related Classes of pl.net.bluesoft.rnd.processtool.model.dict.db.ProcessDBDictionaryItemExtension

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.