1 16 package org.directwebremoting.annotations; 17 18 import java.lang.annotation.ElementType ; 19 import java.lang.annotation.Retention ; 20 import java.lang.annotation.RetentionPolicy ; 21 import java.lang.annotation.Target ; 22 23 31 @Target ({ ElementType.FIELD, ElementType.METHOD }) 32 @Retention (RetentionPolicy.RUNTIME) 33 public @interface RemoteProperty 34 { 35 } 36 | Popular Tags |