2015-04-20 15:36:01 -07:00
|
|
|
|
//: annotations/database/SQLString.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
package annotations.database;
|
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
|
|
|
|
|
|
@Target(ElementType.FIELD)
|
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
|
public @interface SQLString {
|
|
|
|
|
int value() default 0;
|
|
|
|
|
String name() default "";
|
|
|
|
|
Constraints constraints() default @Constraints;
|
|
|
|
|
} ///:~
|