blob: 98e944666f18e510ba86d9823ed8392b50886ff1 (
about) (
plain)
1
2
3
4
5
6
7
8
|
package au.id.zancanaro.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
@Target(ElementType.PARAMETER)
public @interface Generator {
}
|