用NETBEANS做的一个关于Java的小小的demo.大家赐教

源代码在线查看: name.java

软件大小: 60 K
上传用户: ying_min
关键词: NETBEANS Java demo
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*
				 * 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();
				    
				}
							

相关资源