Author: [EMAIL PROTECTED]
Date: Wed Nov 12 12:20:45 2008
New Revision: 4027
Modified:
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/Button.java
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/CheckBox.java
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/DialogBox.java
Log:
fix some doc format mangling
Modified:
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/Button.java
==============================================================================
---
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/Button.java
(original)
+++
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/Button.java
Wed Nov 12 12:20:45 2008
@@ -27,7 +27,10 @@
* <img class='gallery' src='Button.png'/>
* </p>
*
- * <h3>CSS Style Rules</h3> <ul class="css"> <li>.gwt-Button { }</li> </ul>
+ * <h3>CSS Style Rules</h3>
+ * <ul class="css">
+ * <li>.gwt-Button { }</li>
+ * </ul>
*
* <p>
* <h3>Example</h3>
Modified:
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/CheckBox.java
==============================================================================
---
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/CheckBox.java
(original)
+++
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/CheckBox.java
Wed Nov 12 12:20:45 2008
@@ -33,8 +33,11 @@
* <img class='gallery' src='CheckBox.png'/>
* </p>
*
- * <h3>CSS Style Rules</h3> <ul class='css'> <li>.gwt-CheckBox { }</li>
<li>
- * .gwt-CheckBox-disabled { Applied when Checkbox is disabled }</li> </ul>
+ * <h3>CSS Style Rules</h3>
+ * <ul class='css'>
+ * <li>.gwt-CheckBox { }</li>
+ * <li>.gwt-CheckBox-disabled { Applied when Checkbox is disabled }</li>
+ * </ul>
*
* <p>
* <h3>Example</h3>
@@ -99,7 +102,7 @@
public HandlerRegistration addValueChangeHandler(
ValueChangeHandler<Boolean> handler) {
- // Is this the first value change event? If so, time to listen to
clicks
+ // Is this the first value change handler? If so, time to listen to
clicks
// on the checkbox
if (!isEventHandled(ValueChangeEvent.getType())) {
this.addClickHandler(new ClickHandler() {
@@ -198,12 +201,9 @@
@Override
public void setTabIndex(int index) {
// Need to guard against call to setTabIndex before inputElem is
- // initialized.
- // This happens because FocusWidget's (a superclass of CheckBox)
setElement
- // method
- // calls setTabIndex before inputElem is initialized. See CheckBox's
- // protected
- // constructor for more information.
+ // initialized. This happens because FocusWidget's (a superclass of
+ // CheckBox) setElement method calls setTabIndex before inputElem is
+ // initialized. See CheckBox's protected constructor for more
information.
if (inputElem != null) {
getFocusImpl().setTabIndex(inputElem, index);
}
Modified:
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/DialogBox.java
==============================================================================
---
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/DialogBox.java
(original)
+++
branches/1_6_clean_events/user/src/com/google/gwt/user/client/ui/DialogBox.java
Wed Nov 12 12:20:45 2008
@@ -49,9 +49,14 @@
* <li>.gwt-DialogBox .Caption { the caption }</li>
* <li>.gwt-DialogBox .dialogContent { the wrapepr around the content
}</li>
* <li>.gwt-DialogBox .dialogTopLeft { the top left cell }</li>
- * .gwt-DialogBox .dialogTopRightInner { the inner element of the cell
}</li>
- * <li>.gwt-DialogBox .dialogMiddleLeft { the middle left cell }</li> <li>
- * .gwt-DialogBox .dialogMiddleLeftInner { the inner element of the cell
}</li>
+ * <li>.gwt-DialogBox .dialogTopLeftInner { the inner element of the cell
}</li>
+ * <li>.gwt-DialogBox .dialogTopCenter { the top center cell, where the
caption
+ * is located }</li>
+ * <li>.gwt-DialogBox .dialogTopCenterInner { the inner element of the
cell }</li>
+ * <li>.gwt-DialogBox .dialogTopRight { the top right cell }</li>
+ * <li>.gwt-DialogBox .dialogTopRightInner { the inner element of the cell
}</li>
+ * <li>.gwt-DialogBox .dialogMiddleLeft { the middle left cell }</li>
+ * <li>.gwt-DialogBox .dialogMiddleLeftInner { the inner element of the
cell }</li>
* <li>.gwt-DialogBox .dialogMiddleCenter { the middle center cell, where
the
* content is located }</li>
* <li>.gwt-DialogBox .dialogMiddleCenterInner { the inner element of the
cell }</li>
--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---