Revision: 10133
Author:   [email protected]
Date:     Tue May  3 12:27:48 2011
Log:      Tweak javadoc on LazyDomElement

http://code.google.com/p/google-web-toolkit/source/detail?r=10133

Modified:
 /trunk/user/src/com/google/gwt/uibinder/client/LazyDomElement.java

=======================================
--- /trunk/user/src/com/google/gwt/uibinder/client/LazyDomElement.java Tue May 3 08:15:07 2011 +++ /trunk/user/src/com/google/gwt/uibinder/client/LazyDomElement.java Tue May 3 12:27:48 2011
@@ -24,19 +24,19 @@
* elements and delay calls to getElementById() to when the element is actually * used. But note that it will throw a RuntimeException in case the element is
  * accessed but not yet attached in the DOM tree.
- *
+ * <p>
  * Usage example:
- *
+ * <p>
  * <b>Template:</b>
  * <pre>
  *   &lt;gwt:HTMLPanel&gt;
  *      &lt;div ui:field="myDiv" /&gt;
  *   &lt;/gwt:HTMLPanel&gt;
  * </pre>
- *
+ * <p>
  * <b>Class:</b>
  * <pre>
- *   @UiField LazyDomElement&lt;DivElement&gt; myDiv;
+ *   {@literal @}UiField LazyDomElement&lt;DivElement&gt; myDiv;
  *
  *   public setText(String text) {
  *     myDiv.get().setInnerHtml(text);

--
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to