All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jeafgenerator.api.ClassExtensionPoint.xpt Maven / Gradle / Ivy

There is a newer version: 1.24.1
Show newest version
«IMPORT uml»
«IMPORT JMM»

«DEFINE BeforeClassDeclaration FOR Class»
@javax.annotation.processing.Generated("Before Class Declaration. Here an annontation cloud be added.")
«ENDDEFINE»

«DEFINE ParentClassDeclaration FOR Class»
extends Object
«ENDDEFINE»

«DEFINE ImplementInterfaces(List[String] interfaces) FOR Class»
	«IF interfaces.isEmpty == false»
	    implements «FOREACH interfaces AS interface SEPARATOR ", "»«interface»«ENDFOREACH» 
	«ENDIF»
«ENDDEFINE»

«DEFINE BeforeClassPropertyDeclaration(String fqn) FOR Property»
// "«fqn»"
@com.anaptecs.jeaf.junit.extension.ClassPropertyDeclaration
«ENDDEFINE»

«DEFINE AfterClassPropertyDeclaration(String fqn) FOR Property»
// "«fqn»"
private int «this.name»XYZ = 0;
«ENDDEFINE»

«DEFINE AfterBuilderConstructorPropertyInit(String fqn, String builderParamName) FOR Property»
// "«fqn»"
«this.name»XYZ = «builderParamName».«this.name»XYZ;
«ENDDEFINE»

«DEFINE AfterClassPropertyAccessors(String fqn) FOR Property»
public int get«name.toFirstUpper()»XYZ() {
  // "«fqn»"
  return «this.name»XYZ;
}

public void set«name.toFirstUpper()»XYZ(int value) {
  «this.name»XYZ = value;
}
«ENDDEFINE»


// Property handling inside builders
«DEFINE BeforeBuilderPropertyDeclaration(String fqn) FOR Property»
// "«fqn»"
@com.anaptecs.jeaf.junit.extension.BuilderPropertyDeclaration
«ENDDEFINE»

«DEFINE AfterBuilderPropertyDeclaration(String fqn) FOR Property»
// "«fqn»"
private int «this.name»XYZ = 0;
«ENDDEFINE»

«DEFINE AfterBuilderPropertyAccessors(String fqn, String builderClassName) FOR Property»
public «builderClassName» set«name.toFirstUpper()»XYZ(int value) {
  // "«fqn»"
  «this.name»XYZ = value;
  return this;
}
«ENDDEFINE»

«DEFINE CustomOperations FOR Class»
public void doSomethingGenerated() {
    // Ooops, I forget to implement that ;-)
}
«ENDDEFINE»


«DEFINE CustomBuilderOperations FOR Class»
    // Ooops, I also forgot to implement that for our builders ;-(
«ENDDEFINE»




© 2015 - 2024 Weber Informatics LLC | Privacy Policy