You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2009/11/08 21:57:55 UTC

svn commit: r833926 - in /myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component: ./ html/

Author: lu4242
Date: Sun Nov  8 20:57:54 2009
New Revision: 833926

URL: http://svn.apache.org/viewvc?rev=833926&view=rev
Log:
MYFACES-2373 Add a way to document event capabilities for components using myfaces builder plugin

Modified:
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UICommand.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UIInput.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectBoolean.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectMany.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectOne.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/HtmlInputHidden.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandButton.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandLink.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputSecret.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputText.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputTextarea.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectBooleanCheckbox.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyCheckbox.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyListbox.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyMenu.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneListbox.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneMenu.java
    myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneRadio.java

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UICommand.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UICommand.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UICommand.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UICommand.java Sun Nov  8 20:57:54 2009
@@ -27,29 +27,15 @@
 import javax.faces.event.ActionListener;
 import javax.faces.event.FacesEvent;
 import javax.faces.event.PhaseId;
+
 import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFComponent;
+import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFListener;
 import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFProperty;
 
 /**
  * 
  * UICommand is a base abstraction for components that implement ActionSource.
  * 
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ActionEvent</code></td>
- * <td valign="top" nowrap>Invoke Application<br>
- * Apply Request Values</td>
- * <td valign="top">Event delivered when the "action" of the component has been
- * invoked; for example, by clicking on a button. The action may result in page
- * navigation.</td>
- * </tr>
- * </table>
  */
 @JSFComponent(defaultRendererType = "javax.faces.Button")
 public class UICommand extends UIComponentBase implements ActionSource2
@@ -292,6 +278,13 @@
         removeFacesListener(listener);
     }
 
+    /**
+     * Event delivered when the "action" of the component has been
+     * invoked; for example, by clicking on a button. The action may result 
+     * in page navigation.
+     */
+    @JSFListener(event="javax.faces.event.ActionEvent",
+            phases="Invoke Application, Apply Request Values")
     public ActionListener[] getActionListeners()
     {
         return (ActionListener[]) getFacesListeners(ActionListener.class);

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UIInput.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UIInput.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UIInput.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UIInput.java Sun Nov  8 20:57:54 2009
@@ -35,6 +35,7 @@
 import javax.faces.render.Renderer;
 import javax.faces.validator.Validator;
 import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFComponent;
+import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFListener;
 import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFProperty;
 
 /**
@@ -44,20 +45,6 @@
  * href="http://java.sun.com/j2ee/javaserverfaces/1.2/docs/api/index.html">JSF
  * Specification</a> for further details.
  * <p>
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap></td>
- * <td valign="top">The valueChange event is delivered when the value attribute
- * is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent(defaultRendererType = "javax.faces.Text")
 public class UIInput extends UIOutput implements EditableValueHolder
@@ -828,6 +815,11 @@
         removeFacesListener(listener);
     }
 
+    /**
+     * The valueChange event is delivered when the value attribute
+     * is changed.
+     */
+    @JSFListener(event="javax.faces.event.ValueChangeEvent")
     public ValueChangeListener[] getValueChangeListeners()
     {
         return (ValueChangeListener[]) getFacesListeners(ValueChangeListener.class);

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectBoolean.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectBoolean.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectBoolean.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectBoolean.java Sun Nov  8 20:57:54 2009
@@ -26,24 +26,12 @@
  * A component that allows the user to select or unselect an object.
  * <p>
  * This can also be used to choose between two states such as true/false or on/off.
- * <p>
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap></td>
- * <td valign="top">The valueChange event is delivered when the value attribute is changed.</td>
- * </tr>
- * </table>
+ * </p>
  * <p>
  * See the javadoc for this class in the
  * <a href="http://java.sun.com/j2ee/javaserverfaces/1.2/docs/api/index.html">JSF Specification</a>
  * for further details.
+ * </p>
  */
 @JSFComponent(defaultRendererType = "javax.faces.Checkbox")
 public class UISelectBoolean extends UIInput

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectMany.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectMany.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectMany.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectMany.java Sun Nov  8 20:57:54 2009
@@ -42,24 +42,12 @@
  * component, ie it cannot be added directly to a page when using JSP (and other presentation
  * technologies are expected to behave similarly). Instead, there is a family of subclasses that
  * extend this base functionality, and they do have tag classes.
- * <p>
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap></td>
- * <td valign="top">The valueChange event is delivered when the value attribute is changed.</td>
- * </tr>
- * </table>
+ * </p>
  * <p>
  * See the javadoc for this class in the
  * <a href="http://java.sun.com/j2ee/javaserverfaces/1.2/docs/api/index.html">JSF Specification</a>
  * for further details.
+ * </p>
  */
 @JSFComponent(defaultRendererType = "javax.faces.Listbox")
 public class UISelectMany extends UIInput

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectOne.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectOne.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectOne.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/UISelectOne.java Sun Nov  8 20:57:54 2009
@@ -26,24 +26,12 @@
  * <p>
  * This component is expected to have children of type UISelectItem or UISelectItems; these define
  * the set of possible options that the user can choose from.
- * <p>
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap></td>
- * <td valign="top">The valueChange event is delivered when the value attribute is changed.</td>
- * </tr>
- * </table>
+ * </p>
  * <p>
  * See the javadoc for this class in the
  * <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
  * for further details.
+ * </p>
  */
 @JSFComponent(defaultRendererType = "javax.faces.Menu")
 public class UISelectOne extends UIInput

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/HtmlInputHidden.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/HtmlInputHidden.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/HtmlInputHidden.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/HtmlInputHidden.java Sun Nov  8 20:57:54 2009
@@ -28,20 +28,6 @@
  * Unless otherwise specified, all attributes accept static values
  * or EL expressions.
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:inputHidden",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandButton.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandButton.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandButton.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandButton.java Sun Nov  8 20:57:54 2009
@@ -26,21 +26,6 @@
 /**
  * This tag renders as an HTML input element.
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ActionEvent</code></td>
- * <td valign="top" nowrap="">Invoke Application<br/>Apply Request Values</td>
- * <td valign="top">Event delivered when the "action" of the component has been
- * invoked;  for example, by clicking on a button.  The action may result
- * in page navigation.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:commandButton",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandLink.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandLink.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandLink.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlCommandLink.java Sun Nov  8 20:57:54 2009
@@ -26,21 +26,6 @@
 /**
  * This tag renders as an HTML a element.
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ActionEvent</code></td>
- * <td valign="top" nowrap="">Invoke Application<br/>Apply Request Values</td>
- * <td valign="top">Event delivered when the "action" of the component has been
- * invoked;  for example, by clicking on a button.  The action may result
- * in page navigation.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:commandLink",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputSecret.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputSecret.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputSecret.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputSecret.java Sun Nov  8 20:57:54 2009
@@ -26,20 +26,6 @@
 /**
  * Renders as an HTML input tag with its type set to "password".
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:inputSecret",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputText.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputText.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputText.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputText.java Sun Nov  8 20:57:54 2009
@@ -26,20 +26,6 @@
 /**
  * Renders a HTML input element.
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:inputText",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputTextarea.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputTextarea.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputTextarea.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlInputTextarea.java Sun Nov  8 20:57:54 2009
@@ -25,20 +25,6 @@
 /**
  * Renders a HTML textarea element.
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:inputTextarea",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectBooleanCheckbox.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectBooleanCheckbox.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectBooleanCheckbox.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectBooleanCheckbox.java Sun Nov  8 20:57:54 2009
@@ -31,20 +31,6 @@
  * if the value of this component is true.
  * </p>
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:selectBooleanCheckbox",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyCheckbox.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyCheckbox.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyCheckbox.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyCheckbox.java Sun Nov  8 20:57:54 2009
@@ -46,20 +46,6 @@
  * is currently selected.
  * </p>
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:selectManyCheckbox",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyListbox.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyListbox.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyListbox.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyListbox.java Sun Nov  8 20:57:54 2009
@@ -49,20 +49,6 @@
  * objects that are currently selected.
  * </p>
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:selectManyListbox",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyMenu.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyMenu.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyMenu.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectManyMenu.java Sun Nov  8 20:57:54 2009
@@ -46,20 +46,6 @@
  * objects that are currently selected.
  * </p>
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:selectManyMenu",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneListbox.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneListbox.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneListbox.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneListbox.java Sun Nov  8 20:57:54 2009
@@ -47,20 +47,6 @@
  * chosen SelectItem.
  * </p>
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:selectOneListbox",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneMenu.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneMenu.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneMenu.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneMenu.java Sun Nov  8 20:57:54 2009
@@ -41,20 +41,6 @@
  * is updated to contain the "value" property from the chosen SelectItem.
  * </p>
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value
-                attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:selectOneMenu",

Modified: myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneRadio.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneRadio.java?rev=833926&r1=833925&r2=833926&view=diff
==============================================================================
--- myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneRadio.java (original)
+++ myfaces/core/branches/1.2.x/api/src/main/java/javax/faces/component/html/_HtmlSelectOneRadio.java Sun Nov  8 20:57:54 2009
@@ -39,19 +39,6 @@
  * is updated to contain the "value" property from the chosen SelectItem.
  * </p>
  *
- * <h4>Events:</h4>
- * <table border="1" width="100%" cellpadding="3" summary="">
- * <tr bgcolor="#CCCCFF" class="TableHeadingColor">
- * <th align="left">Type</th>
- * <th align="left">Phases</th>
- * <th align="left">Description</th>
- * </tr>
- * <tr class="TableRowColor">
- * <td valign="top"><code>javax.faces.event.ValueChangeEvent</code></td>
- * <td valign="top" nowrap=""></td>
- * <td valign="top">The valueChange event is delivered when the value attribute is changed.</td>
- * </tr>
- * </table>
  */
 @JSFComponent
 (name = "h:selectOneRadio",