1 package org.apache.beehive.controls.api.packaging; 2 3 20 21 import java.lang.annotation.ElementType ; 22 import java.lang.annotation.Target ; 23 24 import java.beans.PropertyEditor ; 25 26 36 @Target ({ElementType.METHOD}) public @interface PropertyInfo 38 { 39 43 static public class NoEditor {}; 44 45 public boolean bound() default false; public boolean constrained() default false; public Class editorClass() default NoEditor.class; } 49 | Popular Tags |