You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2010/01/17 12:35:48 UTC

svn commit: r900102 - in /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl: IsGridLayoutComponent.java IsGridLayoutComponentBase.java

Author: bommel
Date: Sun Jan 17 11:35:47 2010
New Revision: 900102

URL: http://svn.apache.org/viewvc?rev=900102&view=rev
Log:
checkstyle

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponent.java
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentBase.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponent.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponent.java?rev=900102&r1=900101&r2=900102&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponent.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponent.java Sun Jan 17 11:35:47 2010
@@ -27,7 +27,7 @@
    * @param width The width for this component.
    */
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
-      defaultCode = "((LayoutComponentRenderer)getRenderer(getFacesContext())).getWidth(getFacesContext(), this)")
+      defaultCode = "((LayoutComponentRenderer) getRenderer(getFacesContext())).getWidth(getFacesContext(), this)")
   void setWidth(String width);
 
   /**
@@ -36,7 +36,7 @@
    * @param height The height for this component.
    */
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
-      defaultCode = "((LayoutComponentRenderer)getRenderer(getFacesContext())).getHeight(getFacesContext(), this)")
+      defaultCode = "((LayoutComponentRenderer) getRenderer(getFacesContext())).getHeight(getFacesContext(), this)")
   void setHeight(String height);
 
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentBase.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentBase.java?rev=900102&r1=900101&r2=900102&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentBase.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/decl/IsGridLayoutComponentBase.java Sun Jan 17 11:35:47 2010
@@ -67,7 +67,7 @@
    * @param minimumHeight The minimum height for this component.
    */
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
-      defaultCode = "((LayoutComponentRenderer)"
+      defaultCode = "((LayoutComponentRenderer) "
           + "getRenderer(getFacesContext())).getMinimumHeight(getFacesContext(), this)")
   void setMinimumHeight(String minimumHeight);
 
@@ -75,7 +75,7 @@
    * @param preferredWidth The preferred width for this component.
    */
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
-      defaultCode = "((LayoutComponentRenderer)"
+      defaultCode = "((LayoutComponentRenderer) "
           + "getRenderer(getFacesContext())).getPreferredWidth(getFacesContext(), this)")
   void setPreferredWidth(String preferredWidth);
 
@@ -83,7 +83,7 @@
    * @param preferredHeight The preferred height for this component.
    */
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
-      defaultCode = "((LayoutComponentRenderer)"
+      defaultCode = "((LayoutComponentRenderer) "
           + "getRenderer(getFacesContext())).getPreferredHeight(getFacesContext(), this)")
   void setPreferredHeight(String preferredHeight);
 
@@ -91,7 +91,7 @@
    * @param maximumWidth The maximum width for this component.
    */
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
-      defaultCode = "((LayoutComponentRenderer)"
+      defaultCode = "((LayoutComponentRenderer) "
           + "getRenderer(getFacesContext())).getMaximumWidth(getFacesContext(), this)")
   void setMaximumWidth(String maximumWidth);
 
@@ -99,7 +99,7 @@
    * @param maximumHeight The maximum height for this component.
    */
   @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
-      defaultCode = "((LayoutComponentRenderer)"
+      defaultCode = "((LayoutComponentRenderer) "
           + "getRenderer(getFacesContext())).getMaximumHeight(getFacesContext(), this)")
   void setMaximumHeight(String maximumHeight);