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

Examples of net.sf.minuteProject.configuration.bean.enrichment.convention.Convention


    convention.setType(TargetConvention.ENABLE_UPDATABLE_CODE);
    return convention;   
  }

  private Convention getPkForTableConvention() {
    Convention convention = new TableDefaultPrimaryKeyConvention ();
    convention.setDefaultValue(getVirtualPrimaryKey());
    return convention;
  }
View Full Code Here


    convention.setDefaultValue(getVirtualPrimaryKey());
    return convention;
  }
 
  private Convention getPkForViewConvention() {
    Convention convention = new ViewPrimaryKeyConvention ();
    convention.setDefaultValue(getVirtualPrimaryKey());
    return convention;
  }
View Full Code Here

      getKernelConventionList().add(getEnableUpdatableAreaConvention());
    }
  }

  private Convention getEnableUpdatableAreaConvention() {
    Convention convention = new TargetConvention();
    convention.setType(TargetConvention.ENABLE_UPDATABLE_CODE);
    return convention;   
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.configuration.bean.enrichment.convention.Convention

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.