代码搜索:Annotation

找到约 6,069 项符合「Annotation」的源代码

代码结果 6,069
www.eeworm.com/read/325023/13230611

java constraints.java

//: annotations/database/Constraints.java package annotations.database; import java.lang.annotation.*; @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface Constrain
www.eeworm.com/read/325023/13230618

java dbtable.java

//: annotations/database/DBTable.java package annotations.database; import java.lang.annotation.*; @Target(ElementType.TYPE) // Applies to classes only @Retention(RetentionPolicy.RUNTIME) publi
www.eeworm.com/read/325023/13230632

java sqlinteger.java

//: annotations/database/SQLInteger.java package annotations.database; import java.lang.annotation.*; @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface SQLInteger
www.eeworm.com/read/325023/13230635

java usecase.java

//: annotations/UseCase.java import java.lang.annotation.*; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface UseCase { public int id(); public String descr
www.eeworm.com/read/325023/13230640

java simulatingnull.java

//: annotations/SimulatingNull.java import java.lang.annotation.*; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface SimulatingNull { public int id() default -
www.eeworm.com/read/325023/13230663

java multiplier.java

//: annotations/Multiplier.java // APT-based annotation processing. package annotations; @ExtractInterface("IMultiplier") public class Multiplier { public int multiply(int x, int y) { in
www.eeworm.com/read/325023/13231619

java test.java

//: net/mindview/atunit/Test.java // The @Test tag. package net.mindview.atunit; import java.lang.annotation.*; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interfac
www.eeworm.com/read/325023/13231626

java testobjectcreate.java

//: net/mindview/atunit/TestObjectCreate.java // The @Unit @TestObjectCreate tag. package net.mindview.atunit; import java.lang.annotation.*; @Target(ElementType.METHOD) @Retention(RetentionPol
www.eeworm.com/read/325023/13231629

java testobjectcleanup.java

//: net/mindview/atunit/TestObjectCleanup.java // The @Unit @TestObjectCleanup tag. package net.mindview.atunit; import java.lang.annotation.*; @Target(ElementType.METHOD) @Retention(RetentionP
www.eeworm.com/read/325023/13231641

java testproperty.java

//: net/mindview/atunit/TestProperty.java // The @Unit @TestProperty tag. package net.mindview.atunit; import java.lang.annotation.*; // Both fields and methods may be tagged as properties: @Ta