Author: manaRH
Date: 2013-02-14 07:08:44 -0500 (Thu, 14 Feb 2013)
New Revision: 15403

Modified:
   
branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UISelectItems.java
   branches/enterprise/WFK-2_1/pom.xml
Log:
fixed Seam JSF component after upgrading to RF 4.3.0

Modified: 
branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UISelectItems.java
===================================================================
--- 
branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UISelectItems.java
      2013-02-13 15:54:30 UTC (rev 15402)
+++ 
branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UISelectItems.java
      2013-02-14 12:08:44 UTC (rev 15403)
@@ -133,11 +133,11 @@
    }
 
 
-   public abstract void setHideNoSelectionLabel(Boolean hideNoSelectionLabel);
+   public abstract void setHideNoSelectionLabel(boolean hideNoSelectionLabel);
 
    @Attribute(defaultValue = "false",
            description = @Description("if true, the noSelectionLabel will be 
hidden when a value is selected"))
-   public abstract Boolean isHideNoSelectionLabel();
+   public abstract boolean isHideNoSelectionLabel();
 
    @Attribute(description = @Description("specifies the (optional) label to 
place at the top of list " +
            "(if required=\"true\" is also specified then selecting this value 
will cause a validation error)"))
@@ -152,15 +152,15 @@
       
    @Attribute(aliases = {@Alias("itemDisabled")},
            description = @Description("if true the SelectItem will be rendered 
disabled. Can reference the var variable"))
-   public abstract Boolean isDisabled();
+   public abstract boolean isDisabled();
    
-   public abstract void setDisabled(Boolean disabled);
+   public abstract void setDisabled(boolean disabled);
    
    @Attribute(defaultValue = "true", description = @Description("if false, 
characters in the label will not be escaped. " +
            "Beware that this is a safety issue when the label is in any way 
derived from input supplied by the application's user. . Can reference the var 
variable"))
-   public abstract Boolean isEscape();
+   public abstract boolean isEscape();
 
-   public abstract void setEscape(Boolean escape);
+   public abstract void setEscape(boolean escape);
 
    @Attribute(description = @Description("Value to return to the server if 
this option is selected. " +
            "Optional, by default the var object is used. Can reference the var 
variable"))

Modified: branches/enterprise/WFK-2_1/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/pom.xml 2013-02-13 15:54:30 UTC (rev 15402)
+++ branches/enterprise/WFK-2_1/pom.xml 2013-02-14 12:08:44 UTC (rev 15403)
@@ -51,7 +51,7 @@
                <version.jbossas7>7.1.1.Final</version.jbossas7>
                <version.emma>2.0.5312</version.emma>
                <version.junit>4.8.2</version.junit>
-               <version.richfaces>4.2.3.Final-redhat-1</version.richfaces>
+               <version.richfaces>4.3.0.Final-redhat-1</version.richfaces>
 
                <!-- ***************** -->
                <!-- Repository Deployment URLs -->

_______________________________________________
seam-commits mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/seam-commits

Reply via email to