Package de.mhus.lib.adb.model

Examples of de.mhus.lib.adb.model.Feature


  }

  public Feature createFeature(DbManager manager, Table table, String name) {
   
    try {
      Feature feature = null;
   
      name = name.trim().toLowerCase();
     
      if (name.equals("accesscontrol"))
        feature = new FeatureAccessManager();
      else
      if (name.equals("cut"))
        feature = new FeatureCut();
     
      if (feature != null)
        feature.init(manager,table);
      else
        log().t("feature not found",name);
      return feature;
    } catch (Exception e) {
      log().t("feature",name,e);
View Full Code Here

TOP

Related Classes of de.mhus.lib.adb.model.Feature

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.