/*
* Name.java
*
* Created on 2007年9月19日, 下午11:25
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package newAnnotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* @author Administrator
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface Name {
/** Creates a new instance of Name */
String first();
String last();
}