Annotate in Java

From Documentation
Revision as of 01:06, 25 July 2011 by Alicelin (talk | contribs)


Annotate in Java


You could annotate a component in Java by the use of ComponentCtrl.addAnnotation(String, Map), and annotate a property by ComponentCtrl.addAnnotation(String, String, Map).

For example,

Listbox listbox = new Listbox();
listbox.addAnnotation("foo", null); //annotate listbox
Label label = new Label();
label.addAnnotation("value", "fun", null); //annotate the value property of label

Version History

Last Update : 2011/07/25


Version Date Content
     



Last Update : 2011/07/25

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.