think in java 4 源码之 annotations

源代码在线查看: constraints.java

软件大小: 15 K
上传用户: wuqunzhen
关键词: annotations think java in
下载地址: 免注册下载 普通下载 VIP

相关代码

				//: annotations/database/Constraints.java
				package annotations.database;
				import java.lang.annotation.*;
				
				@Target(ElementType.FIELD)
				@Retention(RetentionPolicy.RUNTIME)
				public @interface Constraints {
				  boolean primaryKey() default false;
				  boolean allowNull() default true;
				  boolean unique() default false;
				} ///:~
							

相关资源