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 34 @Target ({ElementType.TYPE, ElementType.METHOD}) 35 public @interface FeatureInfo 36 { 37 public String displayName() default ""; public String name() default ""; public String shortDescription() default ""; 40 public boolean isExpert() default false; 41 public boolean isHidden() default false; 42 public boolean isPreferred() default false; 43 public FeatureAttribute [] attributes() default {}; 44 } 45 | Popular Tags |