12 lines
306 B
Java
12 lines
306 B
Java
|
//: annotations/database/SQLString.java
|
||
|
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;
|
||
|
} ///:~
|