com.trolltech.qt
Annotation Type QtPropertyDesignable


@Retention(value=RUNTIME)
public @interface QtPropertyDesignable

QtPropertyDesignable specifies wether a proprety is suitable for editing in a GUI builder (e.g., the Qt Designer). It is the read method of the property that must be annotated.


Optional Element Summary
 java.lang.String value
          The value should be true or false depending on whether the property is designable.
 

value

public abstract java.lang.String value
The value should be true or false depending on whether the property is designable. It can also be the name of a boolean method in the same class as the annotated method; it must return true if the property is to be designable; otherwise, false.

Default:
"true"