13 lines
347 B
Java
13 lines
347 B
Java
|
//: annotations/database/SQLString.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
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;
|
|||
|
} ///:~
|