JvnRead.java

Go to the documentation of this file.
00001 package jvn;
00002 
00003 /***
00004  * Annotation class : used for telling the Javanaise wrapper generator that the method reads
00005  * a JvnObject
00006  *
00007  * @author Lionel DEBROUX, http://lionel.debroux.free.fr
00008  * @author Savas Ali TOKMEN, http://ali.tokmen.com
00009  */
00010 
00011 import java.lang.annotation.Retention;
00012 import java.lang.annotation.RetentionPolicy;
00013 import java.lang.annotation.Target;
00014 import java.lang.annotation.ElementType;
00015 
00016 @Target(value={ElementType.METHOD})
00017 @Retention(RetentionPolicy.RUNTIME)
00018 public @interface JvnRead
00019 {
00020 //    int value() default 0;
00021 }

Generated on Wed Jan 2 10:15:54 2008 for Javanaise by  doxygen 1.5.4