Package pl.net.bluesoft.rnd.processtool.ui.dict.fields

Source Code of pl.net.bluesoft.rnd.processtool.ui.dict.fields.DBDictionaryItemExtensionField

package pl.net.bluesoft.rnd.processtool.ui.dict.fields;

import com.vaadin.Application;
import org.aperteworkflow.util.dict.ui.fields.DictionaryItemExtensionField;
import org.aperteworkflow.util.dict.wrappers.DictionaryItemExtensionWrapper;
import pl.net.bluesoft.rnd.processtool.ui.dict.wrappers.DBDictionaryItemExtensionWrapper;
import pl.net.bluesoft.rnd.util.i18n.I18NSource;

public class DBDictionaryItemExtensionField extends DictionaryItemExtensionField {
    public DBDictionaryItemExtensionField(Application application, I18NSource source) {
        super(application, source);
  }

  @Override
  protected DictionaryItemExtensionWrapper createDictionaryItemExtensionWrapper() {
    return new DBDictionaryItemExtensionWrapper();
  }
}
TOP

Related Classes of pl.net.bluesoft.rnd.processtool.ui.dict.fields.DBDictionaryItemExtensionField

TOP
Copyright © 2018 www.massapi.com. 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.