You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2005/09/18 18:10:43 UTC

svn commit: r289942 - in /myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom: calendar/HtmlInputCalendar.java fileupload/HtmlInputFileUpload.java inputHtml/InputHtml.java

Author: mmarinschek
Date: Sun Sep 18 09:10:36 2005
New Revision: 289942

URL: http://svn.apache.org/viewcvs?rev=289942&view=rev
Log:
fixed Component-family statements

Modified:
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/HtmlInputFileUpload.java
    myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/inputHtml/InputHtml.java

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java?rev=289942&r1=289941&r2=289942&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/calendar/HtmlInputCalendar.java Sun Sep 18 09:10:36 2005
@@ -33,7 +33,6 @@
     //------------------ GENERATED CODE BEGIN (do not modify!) --------------------
 
     public static final String COMPONENT_TYPE = "org.apache.myfaces.HtmlInputCalendar";
-    public static final String COMPONENT_FAMILY = "javax.faces.Input";
     private static final String DEFAULT_RENDERER_TYPE = "org.apache.myfaces.Calendar";
 
     private String _monthYearRowClass = null;
@@ -59,11 +58,6 @@
     public HtmlInputCalendar()
     {
         setRendererType(DEFAULT_RENDERER_TYPE);
-    }
-
-    public String getFamily()
-    {
-        return COMPONENT_FAMILY;
     }
 
     public void setMonthYearRowClass(String monthYearRowClass)

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/HtmlInputFileUpload.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/HtmlInputFileUpload.java?rev=289942&r1=289941&r2=289942&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/HtmlInputFileUpload.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/fileupload/HtmlInputFileUpload.java Sun Sep 18 09:10:36 2005
@@ -31,7 +31,6 @@
         implements UserRoleAware
 {
     public static final String COMPONENT_TYPE = "org.apache.myfaces.HtmlInputFileUpload";
-    public static final String COMPONENT_FAMILY = "javax.faces.Input";
     private static final String DEFAULT_RENDERER_TYPE = "org.apache.myfaces.FileUpload";
 
     private String _accept = null;
@@ -65,11 +64,6 @@
 	public void setStorage(String string) {
 		_storage = string;
 	}
-
-    public String getFamily()
-    {
-        return COMPONENT_FAMILY;
-    }
 
     public void setAccept(String accept)
     {

Modified: myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/inputHtml/InputHtml.java
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/inputHtml/InputHtml.java?rev=289942&r1=289941&r2=289942&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/inputHtml/InputHtml.java (original)
+++ myfaces/tomahawk/trunk/src/java/org/apache/myfaces/custom/inputHtml/InputHtml.java Sun Sep 18 09:10:36 2005
@@ -59,10 +59,6 @@
         setRendererType(DEFAULT_RENDERER_TYPE);
     }
 
-    public String getFamily() {
-        return COMPONENT_FAMILY;
-    }
-
     public Object saveState(FacesContext context) {
         Object values[] = new Object[5];
         values[0] = super.saveState(context);