Author: [EMAIL PROTECTED]
Date: Fri Nov 14 11:12:33 2008
New Revision: 4081
Modified:
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllFocusHandlers.java
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllKeyHandlers.java
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllMouseHandlers.java
Log:
Changing br's to p's.
Modified:
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllFocusHandlers.java
==============================================================================
---
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllFocusHandlers.java
(original)
+++
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllFocusHandlers.java
Fri Nov 14 11:12:33 2008
@@ -20,10 +20,10 @@
* This is a convenience interface that includes all focus handlers
defined by
* the core GWT system.
*
- * <br/> WARNING, PLEASE READ: As this interface is intended for
developers who
+ * <p> WARNING, PLEASE READ: As this interface is intended for developers
who
* wish to handle all focus events in GWT, in the unlikely event that a new
* focus event is added, this interface will change.
- *
+ * </p>
*/
public interface HasAllFocusHandlers extends HasFocusHandlers,
HasBlurHandlers {
}
Modified:
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllKeyHandlers.java
==============================================================================
---
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllKeyHandlers.java
(original)
+++
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllKeyHandlers.java
Fri Nov 14 11:12:33 2008
@@ -17,11 +17,14 @@
package com.google.gwt.event.dom.client;
/**
- * Convenience interface used to implement all key handlers at once. In the
- * unlikely event that more key handler subtypes are added to GWT, this
- * interface will be expanded, so only implement this interface if you
wish to
- * have your widget break if a new key event type is introduced.
+ * Convenience interface used to implement all key handlers at once.
*
+ * <p>
+ * WARNING, PLEASE READ: In the unlikely event that more key handler
subtypes
+ * are added to GWT, this interface will be expanded, so only implement
this
+ * interface if you wish to have your widget break if a new key event type
is
+ * introduced.
+ * </p>
*/
public interface HasAllKeyHandlers extends HasKeyUpHandlers,
HasKeyDownHandlers, HasKeyPressHandlers {
Modified:
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllMouseHandlers.java
==============================================================================
---
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllMouseHandlers.java
(original)
+++
branches/1_6_clean_events/user/src/com/google/gwt/event/dom/client/HasAllMouseHandlers.java
Fri Nov 14 11:12:33 2008
@@ -19,11 +19,11 @@
/**
* This is a convenience interface that includes all mouse handlers
defined by
* the core GWT system.
- *
+ * <p>
* WARNING, PLEASE READ: As this interface is intended for developers who
* wish to handle all mouse events in GWT, new mouse event handlers will be
* added to it. Therefore, updates can cause breaking API changes.
- *
+ * </p>
*/
public interface HasAllMouseHandlers extends HasMouseDownHandlers,
HasMouseUpHandlers, HasMouseOutHandlers, HasMouseOverHandlers,
--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---