代码搜索:Annotation
找到约 6,069 项符合「Annotation」的源代码
代码结果 6,069
www.eeworm.com/read/147809/5719805
java mutator.java
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
public @interface Mutator {
String value();
}
www.eeworm.com/read/140727/5781609
cc anno_04.cc
// file: $isip/class/mmedia/Annotation/anno_04.cc
// version: $Id: anno_04.cc,v 1.4 2002/11/24 16:43:37 gao Exp $
//
// isip include files
//
#include "Annotation.h"
// method: write
//
// arguments
www.eeworm.com/read/130241/5962752
java logentry.java
/**
@version 1.00 2004-08-17
@author Cay Horstmann
*/
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface LogEntry
{
String logg
www.eeworm.com/read/130241/5962760
java property.java
import java.lang.annotation.*;
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.SOURCE)
public @interface Property
{
String editor() default "";
}
www.eeworm.com/read/130241/5962764
java actionlistenerfor.java
/**
@version 1.00 2004-08-17
@author Cay Horstmann
*/
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ActionListenerFor
{
St
www.eeworm.com/read/129405/5973499
java annotatedclasstype.java
package org.hibernate.cfg;
/**
* Type of annotation of a class will give its type
*
* @author Emmanuel Bernard
*/
public enum AnnotatedClassType {
/**has no revelent top level annotation */
NON
www.eeworm.com/read/129405/5973512
java proxy.java
//$Id: Proxy.java,v 1.1 2005/02/18 07:29:19 epbernard Exp $
package org.hibernate.annotations;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy