Package net.sf.minuteProject.configuration.bean

Examples of net.sf.minuteProject.configuration.bean.Template


      return CommonUtils.getClassName(column, t);
    return null;
  }

  private static String getEnumTemplateImport(Template template, Column column) {
    Template t = getEnumTemplateDependencyAvailable(template);
    if (t != null)
      return CommonUtils.getEntityLevelTemplateFullPath(column, t, t.getName());
    return null;
  }
View Full Code Here


 
  private String getType (Element element) {
    return FormatUtils.getJavaName(element.getNameAttributeValue());
  }
  private static String getNodeFullClassPathJavaName(Element element, Configuration configuration) {
    Template template = CommonUtils.getTemplate(configuration, TEMPLATE_NODE_XML);
    String s = CommonUtils.getPackageName (element, template);
    String x = FormatUtils.getJavaName(element.getNameAttributeValue());
    return s+"."+x;
  }
View Full Code Here

  public static String getJavaName (String name) {
    return FormatUtils.getJavaName(name);
  }
 
  public String getDigesterFullPathConfigXml (Configuration configuration) {
    Template template = CommonUtils.getTemplate(configuration, TEMPLATE_DIGESTER_CONFIG_XML);
    return CommonUtils.getArtifactRelativePathDirAndFullName(template, configuration.getModel());
  }
View Full Code Here

//    Template template = CommonUtils.getTemplate(configuration, TEMPLATE_DIGESTER_CONFIG_XML);
    return CommonUtils.getArtifactFullClasspath(configuration.getModel(), TEMPLATE_DIGESTER_HOLDER_BEAN);
  }

  public static String getDigesterHolderBeanName (Configuration configuration) {
    Template template = CommonUtils.getTemplate(configuration, TEMPLATE_DIGESTER_HOLDER_BEAN);
    return CommonUtils.getClassName(configuration, template);
  }
View Full Code Here

  public static String getLoaderBeanName (Configuration configuration) {
    return getBeanName(configuration, TEMPLATE_LOADER_BEAN);
  }
 
  private static String getBeanName (Configuration configuration, String templateName) {
    Template template = CommonUtils.getTemplate(configuration, templateName);
    return CommonUtils.getClassName(configuration, template);
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.configuration.bean.Template

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.