tool.designpatterns.DesignPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of staticanalyser Show documentation
Show all versions of staticanalyser Show documentation
A static design pattern verification plugin.
The newest version!
package tool.designpatterns;
/**
* Instantiation can be done according to the following example. Using curly brackets to enter an
* array.
*
*
* {@literal @}DesignPattern(pattern = {Pattern.IMMUTABLE, Pattern.SINGLETON})
* public class Design{}
*
*/
public @interface DesignPattern {
/**
* List of Design patterns that are supposed to be present in the class this Annotation is
* placed in.
*
* @return the patterns.
*/
Pattern[] pattern();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy