templates.class.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feature-matcher-generator Show documentation
Show all versions of feature-matcher-generator Show documentation
Annotation Processor to generate Hamcrest's Feature Matchers for fields
package ${type.packageName()};
@javax.annotation.Generated("ru.yandex.qatools.processors.matcher.gen.MatcherFactoryGenerator")
public final class ${utils.withGeneratedSuffix(${type.name()})} {
/**
* This class could not be instantiated
*/
private ${utils.withGeneratedSuffix(${type.name()})}() {
throw new java.lang.UnsupportedOperationException();
}
#foreach($field in ${type.fields()})
#parse("templates/method.vm")
#end
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy