00001 package jvn; 00002 00003 /*** 00004 * Annotation class : used for telling the Javanaise wrapper generator that the method writes 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.ElementType; 00012 import java.lang.annotation.Retention; 00013 import java.lang.annotation.RetentionPolicy; 00014 import java.lang.annotation.Target; 00015 00016 @Target(value={ElementType.METHOD}) 00017 @Retention(RetentionPolicy.RUNTIME) 00018 public @interface JvnWrite 00019 { 00020 // int value() default 0; 00021 }