first commit
This commit is contained in:
commit
4d332ef662
27586 changed files with 3281783 additions and 0 deletions
|
|
@ -0,0 +1,16 @@
|
|||
package com.ablia.annotation;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target({ElementType.FIELD})
|
||||
public @interface CRDescriptor {
|
||||
String descrizione() default "";
|
||||
|
||||
boolean abilita() default true;
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
package com.ablia.annotation;
|
||||
Loading…
Add table
Add a link
Reference in a new issue