Package net.sf.minuteProject.configuration.bean.enrichment

Examples of net.sf.minuteProject.configuration.bean.enrichment.XmlEnrichment


    }
    return false;
  }

  public static String getBaseElement (Configuration configuration) {
    XmlEnrichment xmlEnrichment = getXmlEnrichment(configuration);
    if (xmlEnrichment!=null)
       return xmlEnrichment.getBaseElement();
    return null;
  }
View Full Code Here


    }
    return null;
  }
 
  public static boolean isPackageNameAvailable(Configuration configuration) {
    XmlEnrichment xmlEnrichment = getXmlEnrichment(configuration);
    if (xmlEnrichment!=null)
       return xmlEnrichment.isPackageNameAvailable();
    return false;
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.configuration.bean.enrichment.XmlEnrichment

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.