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 2007/12/04 23:12:34 UTC

svn commit: r601107 [3/5] - in /myfaces/tobago/trunk: core/src/main/java/org/apache/myfaces/tobago/ core/src/main/java/org/apache/myfaces/tobago/ajax/api/ core/src/main/java/org/apache/myfaces/tobago/application/ core/src/main/java/org/apache/myfaces/t...

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/AttributeTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/AttributeTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/AttributeTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/AttributeTag.java Tue Dec  4 14:12:14 2007
@@ -43,7 +43,7 @@
  * associated with the closest parent UIComponent custom action.
  */
 @Tag(name = "attribute", bodyContent = BodyContent.EMPTY)
-public class AttributeTag  extends TagSupport {
+public class AttributeTag extends TagSupport {
 
   private static final long serialVersionUID = 6231531736083277631L;
 
@@ -59,7 +59,8 @@
 
   /**
    * The name of a attribute.
-   * @param name  A attribute name
+   *
+   * @param name A attribute name
    */
   @TagAttribute(required = true)
   public void setName(String name) {
@@ -68,6 +69,7 @@
 
   /**
    * The value of a attribute
+   *
    * @param value A attribute value
    */
   @TagAttribute(required = true)
@@ -104,7 +106,7 @@
       if (valueBinding != null) {
         attributeName = (String) valueBinding.getValue(FacesContext.getCurrentInstance());
       } else {
-         // TODO Message resource i18n
+        // TODO Message resource i18n
         throw new JspException("Can not get ValueBinding for attribute name " + name);
       }
     }
@@ -124,7 +126,7 @@
       if (valueBinding != null) {
         component.setValueBinding(name, valueBinding);
       } else {
-         // TODO Message resource i18n
+        // TODO Message resource i18n
         throw new JspException("Can not get ValueBinding for attribute value " + value);
       }
     } else {

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/BoxTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/BoxTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/BoxTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/BoxTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -34,8 +34,8 @@
     uiComponent = "org.apache.myfaces.tobago.component.UIBox",
     rendererType = "Box",
     facets = {
-    @Facet(name="toolBar", description = "Contains an instance of UIToolBar"),
-    @Facet(name="layout", description = "Contains an instance of UILayout")})
+    @Facet(name = "toolBar", description = "Contains an instance of UIToolBar"),
+    @Facet(name = "layout", description = "Contains an instance of UILayout")})
 
 public interface BoxTagDeclaration extends TobagoBodyTagDeclaration,
     HasIdBindingAndRendered, HasDeprecatedDimension, HasLabel {

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ButtonTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ButtonTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ButtonTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ButtonTag.java Tue Dec  4 14:12:14 2007
@@ -64,7 +64,7 @@
     ComponentUtil.setIntegerProperty(component, ATTR_TAB_INDEX, tabIndex);
   }
 
-   public String getComponentType() {
+  public String getComponentType() {
     return UIButtonCommand.COMPONENT_TYPE;
   }
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ButtonTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ButtonTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ButtonTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ButtonTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -35,8 +35,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsInline;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 10.02.2006
  * Time: 22:00:03
  */
@@ -50,10 +48,10 @@
     uiComponent = "org.apache.myfaces.tobago.component.UIButtonCommand",
     rendererType = "Button",
     facets = {
-        @Facet(name="confirmation", description = "Contains a UIOutput instance with the confirmation message."),
-        @Facet(name="popup", description = "Contains a UIPopup instance.")})
+    @Facet(name = "confirmation", description = "Contains a UIOutput instance with the confirmation message."),
+    @Facet(name = "popup", description = "Contains a UIPopup instance.")})
 public interface ButtonTagDeclaration extends AbstractCommandTagDeclaration,
     HasIdBindingAndRendered, HasLabelAndAccessKey, HasImage,
-    IsDisabled, HasCommandType, IsDefaultCommand, HasDeprecatedWidth, HasTip, 
+    IsDisabled, HasCommandType, IsDefaultCommand, HasDeprecatedWidth, HasTip,
     IsInline, HasTarget, HasMarkup, HasTabIndex {
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CalendarTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CalendarTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CalendarTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CalendarTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -35,15 +35,14 @@
 @Tag(name = "calendar", bodyContent = BodyContent.EMPTY)
 @UIComponentTag(
     uiComponent = "javax.faces.component.UIOutput",
-    rendererType = "Calendar" , isComponentAlreadyDefined = true)
+    rendererType = "Calendar", isComponentAlreadyDefined = true)
 public interface CalendarTagDeclaration extends TobagoTagDeclaration, HasIdBindingAndRendered {
 
   /**
-   *  The current value of this component.
-   *
+   * The current value of this component.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.util.Calendar",
-      "java.util.Date" })
+  @UIComponentTagAttribute(type = {"java.util.Calendar",
+      "java.util.Date"})
   void setValue(String value);
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CellTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CellTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CellTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CellTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -24,8 +24,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasIdBindingAndRendered;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 10.02.2006
  * Time: 22:20:01
  */
@@ -38,14 +36,14 @@
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UICell",
     rendererType = "Panel")
-public interface CellTagDeclaration extends TobagoBodyTagDeclaration, 
+public interface CellTagDeclaration extends TobagoBodyTagDeclaration,
     HasIdBindingAndRendered {
 
   /**
    * Count of layout column's to span over.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.lang.Integer" },
+  @UIComponentTagAttribute(type = {"java.lang.Integer"},
       defaultValue = "1")
   void setSpanX(String spanX);
 
@@ -53,7 +51,7 @@
    * Count of layout row's to span over.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.lang.Integer" },
+  @UIComponentTagAttribute(type = {"java.lang.Integer"},
       defaultValue = "1")
   void setSpanY(String spanY);
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnSelectorTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnSelectorTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnSelectorTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnSelectorTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -25,8 +25,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsRendered;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 30.03.2006
  * Time: 21:37:36
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ColumnTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -27,8 +27,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasWidth;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 20.02.2006
  * Time: 22:10:07
  */
@@ -40,7 +38,7 @@
 @Tag(name = "column")
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UIColumn")
-    //rendererType = "Column")
+//rendererType = "Column")
 public interface ColumnTagDeclaration extends TobagoTagDeclaration, HasIdBindingAndRendered, HasLabel, HasTip,
     HasWidth {
   /**
@@ -56,7 +54,7 @@
    * <code>java.util.List</code> or <code>Object[]</code>.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.lang.Boolean" },
+  @UIComponentTagAttribute(type = {"java.lang.Boolean"},
       defaultValue = "false")
   void setSortable(String sortable);
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTag.java Tue Dec  4 14:12:14 2007
@@ -23,12 +23,10 @@
 import javax.faces.component.UIComponent;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 05.08.2006
  * Time: 11:59:21
  */
-public class CommandTag  extends AbstractCommandTag implements CommandTagDeclaration {
+public class CommandTag extends AbstractCommandTag implements CommandTagDeclaration {
   private String renderedPartially;
 
   public void release() {

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -22,8 +22,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasId;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 05.08.2006
  * Time: 12:01:32
  */
@@ -35,13 +33,13 @@
 @Tag(name = "command", tagExtraInfoClassName = "org.apache.myfaces.tobago.taglib.component.CommandTagExtraInfo")
 @UIComponentTag(uiComponent = "org.apache.myfaces.tobago.component.UICommand",
     rendererType = "Command")
-public interface CommandTagDeclaration  extends AbstractCommandTagDeclaration, HasId {
+public interface CommandTagDeclaration extends AbstractCommandTagDeclaration, HasId {
 
   /**
    * Indicate the partially rendered Components in a case of a submit.
 
-  @TagAttribute
-  @UIComponentTagAttribute()
-  void setRenderedPartially(String componentIds);   */
+   @TagAttribute
+   @UIComponentTagAttribute()
+   void setRenderedPartially(String componentIds);   */
 
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTagExtraInfo.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTagExtraInfo.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTagExtraInfo.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/CommandTagExtraInfo.java Tue Dec  4 14:12:14 2007
@@ -22,28 +22,27 @@
 import javax.servlet.jsp.tagext.ValidationMessage;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 19.04.2006
  * Time: 10:56:39
  */
 public class CommandTagExtraInfo extends TagExtraInfo {
   private static final ValidationMessage[] EMPTY_MESSAGE = new ValidationMessage[0];
+
   public ValidationMessage[] validate(TagData data) {
     Object action = data.getAttribute("action");
     Object onclick = data.getAttribute("onclick");
     Object link = data.getAttribute("link");
 
     if (link != null && !(action == null && onclick == null)) {
-        return generateValidationMessages(data);
+      return generateValidationMessages(data);
     }
     return EMPTY_MESSAGE;
   }
 
   private ValidationMessage[] generateValidationMessages(TagData data) {
     ValidationMessage[] messages = new ValidationMessage[1];
-        messages [0] = new ValidationMessage(data.getId(),
-            "Only one Attribute of action, onclick and link is allowed");
+    messages[0] = new ValidationMessage(data.getId(),
+        "Only one Attribute of action, onclick and link is allowed");
     return messages;
   }
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ConverterTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ConverterTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ConverterTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ConverterTag.java Tue Dec  4 14:12:14 2007
@@ -33,8 +33,6 @@
 import javax.faces.convert.Converter;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: Oct 13, 2006
  * Time: 6:01:59 PM
  */
@@ -55,7 +53,8 @@
 
   /**
    * The converterId of a registered converter.
-   * @param converterId  A valid converterId
+   *
+   * @param converterId A valid converterId
    */
   @TagAttribute()
   public void setConverterId(String converterId) {
@@ -64,6 +63,7 @@
 
   /**
    * The value binding expression to a converter.
+   *
    * @param binding A valid binding
    */
   @TagAttribute
@@ -101,7 +101,7 @@
     }
     if (!(component instanceof ValueHolder)) {
       // TODO Message resource i18n
-      throw new JspException("Component "+ component.getClass().getName() + " is not instanceof ValueHolder");
+      throw new JspException("Component " + component.getClass().getName() + " is not instanceof ValueHolder");
     }
     ValueHolder valueHolder = (ValueHolder) component;
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/DatePickerTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/DatePickerTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/DatePickerTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/DatePickerTag.java Tue Dec  4 14:12:14 2007
@@ -26,8 +26,6 @@
 
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 30.05.2006
  * Time: 19:11:07
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/DatePickerTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/DatePickerTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/DatePickerTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/DatePickerTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -24,8 +24,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasTabIndex;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 30.05.2006
  * Time: 19:17:28
  */
@@ -34,12 +32,12 @@
  * Renders a date picker.
  * The component needs a DateFormat Pattern from a converter. The converter
  * should be an instance of DateTimeConverter and return a valid pattern from
- * the method getPattern() 
+ * the method getPattern()
  */
 @Tag(name = "datePicker")
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UIDatePicker",
     rendererType = RENDERER_TYPE_DATE_PICKER)
-public interface DatePickerTagDeclaration  extends TobagoTagDeclaration, HasFor,
+public interface DatePickerTagDeclaration extends TobagoTagDeclaration, HasFor,
     HasTabIndex {
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FileItemValidatorTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FileItemValidatorTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FileItemValidatorTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FileItemValidatorTag.java Tue Dec  4 14:12:14 2007
@@ -26,8 +26,6 @@
 import javax.servlet.jsp.JspException;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: Oct 30, 2006
  * Time: 11:07:35 PM
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FileTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FileTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FileTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FileTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -58,6 +58,6 @@
    * uploaded file.
    */
   @TagAttribute()
-  @UIComponentTagAttribute(type = { "org.apache.commons.fileupload.FileItem" })
+  @UIComponentTagAttribute(type = {"org.apache.commons.fileupload.FileItem"})
   void setValue(String value);
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ForEachTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ForEachTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ForEachTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ForEachTag.java Tue Dec  4 14:12:14 2007
@@ -168,7 +168,7 @@
    * Index at which the iteration begins.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.lang.Integer" }, defaultValue = "0")
+  @UIComponentTagAttribute(type = {"java.lang.Integer"}, defaultValue = "0")
   public void setBegin(String begin) {
     this.begin = begin;
   }
@@ -179,7 +179,7 @@
    * Defaults to <code>items.length()</code>.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.lang.Integer" }, defaultValue = "items.lenght()")
+  @UIComponentTagAttribute(type = {"java.lang.Integer"}, defaultValue = "items.lenght()")
   public void setEnd(String end) {
     this.end = end;
   }
@@ -189,7 +189,7 @@
    * Index increments every iteration by this value.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.lang.Integer" }, defaultValue = "1")
+  @UIComponentTagAttribute(type = {"java.lang.Integer"}, defaultValue = "1")
   public void setStep(String step) {
     this.step = step;
   }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FormTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FormTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FormTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FormTag.java Tue Dec  4 14:12:14 2007
@@ -22,7 +22,7 @@
 import javax.servlet.jsp.tagext.BodyTag;
 
 // Some Weblogic versions need explicit 'implements' for BodyTag
-public class FormTag extends TobagoBodyTag implements BodyTag,  FormTagDeclaration {
+public class FormTag extends TobagoBodyTag implements BodyTag, FormTagDeclaration {
 
   public String getComponentType() {
     return UIForm.COMPONENT_TYPE;

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FormTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FormTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FormTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/FormTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -23,8 +23,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasId;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 11.02.2006
  * Time: 14:29:26
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/GridLayoutTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -30,8 +30,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasRowLayout;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 14.03.2006
  * Time: 16:58:13
  */
@@ -46,54 +44,52 @@
  * PIXEL        ::= NUMBER "px"
  * PROPORTIONAL ::= [NUMBER] "*"
  * </pre>
-
- <table border="1">
-   <tr>
-     <th>Parent</th>
-     <th>Child</th>
-     <th>Okay?</th>
-     <th>Remarks</th>
-   </tr>
-   <tr>
-     <td>FIXED</td>
-     <td>any combination of FIXED or PIXEL but no PROPORTIONAL</td>
-     <td>okay</td>
-     <td>-</td>
-   </tr>
-   <tr>
-     <td>FIXED</td>
-     <td>any combination with at least one PROPORTIONAL</td>
-     <td>wrong</td>
-     <td>LayoutManager cannot compute the fixed value.</td>
-   </tr>
-   <tr>
-     <td>PIXEL</td>
-     <td>any combination of FIXED or PIXEL but no PROPORTIONAL</td>
-     <td>potentially wrong</td>
-     <td>The values depend on each other, the programmer has to keep consistency manually.</td>
-   </tr>
-   <tr>
-     <td>PIXEL</td>
-     <td>any combination with at least one PROPORTIONAL</td>
-     <td>okay</td>
-     <td>-</td>
-   </tr>
-   <tr>
-     <td>PROPORTIONAL</td>
-     <td>any combination of FIXED or PIXEL but no PROPORTIONAL</td>
-     <td>potentially wrong</td>
-     <td>No automatical matching:<ul><li>too little space: scrollbar</li>
-       <li>too much space: elements will be spreaded.</li></ul></td>
-   </tr>
-   <tr>
-     <td>PROPORTIONAL</td>
-     <td>any combination with at least one PROPORTIONAL</td>
-     <td>okay</td>
-     <td>-</td>
-   </tr>
- </table>
-
- 
+ * <p/>
+ * <table border="1">
+ * <tr>
+ * <th>Parent</th>
+ * <th>Child</th>
+ * <th>Okay?</th>
+ * <th>Remarks</th>
+ * </tr>
+ * <tr>
+ * <td>FIXED</td>
+ * <td>any combination of FIXED or PIXEL but no PROPORTIONAL</td>
+ * <td>okay</td>
+ * <td>-</td>
+ * </tr>
+ * <tr>
+ * <td>FIXED</td>
+ * <td>any combination with at least one PROPORTIONAL</td>
+ * <td>wrong</td>
+ * <td>LayoutManager cannot compute the fixed value.</td>
+ * </tr>
+ * <tr>
+ * <td>PIXEL</td>
+ * <td>any combination of FIXED or PIXEL but no PROPORTIONAL</td>
+ * <td>potentially wrong</td>
+ * <td>The values depend on each other, the programmer has to keep consistency manually.</td>
+ * </tr>
+ * <tr>
+ * <td>PIXEL</td>
+ * <td>any combination with at least one PROPORTIONAL</td>
+ * <td>okay</td>
+ * <td>-</td>
+ * </tr>
+ * <tr>
+ * <td>PROPORTIONAL</td>
+ * <td>any combination of FIXED or PIXEL but no PROPORTIONAL</td>
+ * <td>potentially wrong</td>
+ * <td>No automatical matching:<ul><li>too little space: scrollbar</li>
+ * <li>too much space: elements will be spreaded.</li></ul></td>
+ * </tr>
+ * <tr>
+ * <td>PROPORTIONAL</td>
+ * <td>any combination with at least one PROPORTIONAL</td>
+ * <td>okay</td>
+ * <td>-</td>
+ * </tr>
+ * </table>
  */
 @Tag(name = "gridLayout", bodyContent = BodyContent.EMPTY)
 @UIComponentTag(

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/HiddenTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/HiddenTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/HiddenTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/HiddenTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -33,7 +33,6 @@
  */
 /**
  * Renders a 'hidden' input element.
- * 
  */
 @Tag(name = "hidden")
 @UIComponentTag(

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ImageTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ImageTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ImageTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ImageTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -33,7 +33,7 @@
  * $Id$
  */
 /**
- *  Renders a Image.
+ * Renders a Image.
  */
 @Tag(name = "image", bodyContent = BodyContent.EMPTY)
 @UIComponentTag(
@@ -43,18 +43,14 @@
     HasIdBindingAndRendered, HasBorder, HasDimension, HasTip {
 
   /**
-   *
    * Absolute url to an image or image name to lookup in tobago resource path
-   *
    */
   @TagAttribute(required = true)
   @UIComponentTagAttribute()
   void setValue(String value);
 
   /**
-   *
-   *  Alternate textual description of the image rendered by this component.
-   *
+   * Alternate textual description of the image rendered by this component.
    */
   @TagAttribute
   @UIComponentTagAttribute()

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LabelTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LabelTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LabelTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LabelTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -47,9 +47,10 @@
     HasLabelWithAccessKey, HasFor, IsInline, HasDeprecatedWidth, HasTip, HasMarkup {
 
   /**
-   *   Text value to display as label. Overwritten by 'labelWithAccessKey'
+   * Text value to display as label. Overwritten by 'labelWithAccessKey'
    */
-  @TagAttribute @UIComponentTagAttribute()
+  @TagAttribute
+  @UIComponentTagAttribute()
   void setValue(String value);
 
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LinkTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LinkTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LinkTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LinkTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -33,23 +33,20 @@
 import org.apache.myfaces.tobago.taglib.decl.IsInline;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 11.02.2006
  * Time: 13:16:47
  */
 
 /**
  * Renders a link element.
- * 
  */
 @Tag(name = "link", tagExtraInfoClassName = "org.apache.myfaces.tobago.taglib.component.CommandTagExtraInfo")
 @BodyContentDescription(anyTagOf = "facestag")
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UILinkCommand",
     rendererType = "Link",
-    facets = {@Facet(name="confirmation", description = "Contains a UIOutput instance with the confirmation message.")})
+    facets = {@Facet(name = "confirmation", description = "Contains a UIOutput instance with the confirmation message.")})
 public interface LinkTagDeclaration extends AbstractCommandTagDeclaration,
-    HasIdBindingAndRendered, HasLabelAndAccessKey, IsDisabled, IsInline, 
+    HasIdBindingAndRendered, HasLabelAndAccessKey, IsDisabled, IsInline,
     HasCommandType, HasTarget, HasTip, HasImage, HasMarkup, HasTabIndex {
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LoadBundleTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LoadBundleTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LoadBundleTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/LoadBundleTag.java Tue Dec  4 14:12:14 2007
@@ -78,11 +78,10 @@
   public String getVar() {
     return var;
   }
+
   /**
-   *
    * Name of a session-scope attribute under which the bundle data
    * will be exposed.
-   *
    */
   @TagAttribute(required = true)
   public void setVar(String var) {

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuBarTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuBarTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuBarTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuBarTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -24,23 +24,22 @@
 import org.apache.myfaces.tobago.taglib.decl.HasIdBindingAndRendered;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 14.03.2006
  * Time: 17:14:12
  */
-/*
- * Renders a menu bar.<br />
- * Add menu bar as facet name="menuBar" to page tag or use it anywhere
- * on page.<br />
- */
+
+/**
+* Renders a menu bar.<br />
+* Add menu bar as facet name="menuBar" to page tag or use it anywhere
+* on page.<br />
+*/
 @Tag(name = "menuBar")
 @BodyContentDescription(
-    anyClassOf = { "org.apache.myfaces.tobago.taglib.component.MenuTag",
+    anyClassOf = {"org.apache.myfaces.tobago.taglib.component.MenuTag",
         "org.apache.myfaces.tobago.taglib.component.MenuCommandTag",
         "org.apache.myfaces.tobago.taglib.component.MenuSelectBooleanTag",
         "org.apache.myfaces.tobago.taglib.component.MenuSelectOneTag",
-        "org.apache.myfaces.tobago.taglib.component.MenuSeparatorTag" })
+        "org.apache.myfaces.tobago.taglib.component.MenuSeparatorTag"})
 @UIComponentTag(
     uiComponent = "javax.faces.component.UIPanel",
     rendererType = "MenuBar", isComponentAlreadyDefined = true)

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuCommandTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuCommandTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuCommandTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuCommandTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -27,8 +27,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasTarget;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 31.03.2006
  * Time: 21:14:17
  */
@@ -40,5 +38,5 @@
     uiComponent = "org.apache.myfaces.tobago.component.UIMenuCommand",
     rendererType = "MenuCommand")
 public interface MenuCommandTagDeclaration extends TobagoTagDeclaration, AbstractCommandTagDeclaration,
-    HasIdBindingAndRendered, HasLabelAndAccessKey, IsDisabled,  HasCommandType, HasImage, HasTarget {
+    HasIdBindingAndRendered, HasLabelAndAccessKey, IsDisabled, HasCommandType, HasImage, HasTarget {
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSelectBooleanTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSelectBooleanTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSelectBooleanTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSelectBooleanTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -26,8 +26,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsDisabled;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 31.03.2006
  * Time: 21:46:55
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSelectOneTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSelectOneTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSelectOneTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSelectOneTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -26,8 +26,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsDisabled;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 31.03.2006
  * Time: 22:07:57
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSeparatorTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSeparatorTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSeparatorTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSeparatorTag.java Tue Dec  4 14:12:14 2007
@@ -27,7 +27,6 @@
 import javax.faces.component.UIComponent;
 
 
-
 public class MenuSeparatorTag extends TobagoTag
     implements MenuSeparatorTagDeclaration {
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSeparatorTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSeparatorTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSeparatorTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuSeparatorTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -24,8 +24,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsRendered;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 31.03.2006
  * Time: 22:05:46
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MenuTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -26,8 +26,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsDisabled;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 31.03.2006
  * Time: 21:49:41
  */
@@ -37,11 +35,11 @@
  */
 @Tag(name = "menu")
 @BodyContentDescription(
-    anyClassOf = { "org.apache.myfaces.tobago.taglib.component.MenuTag",
+    anyClassOf = {"org.apache.myfaces.tobago.taglib.component.MenuTag",
         "org.apache.myfaces.tobago.taglib.component.MenuCommandTag",
         "org.apache.myfaces.tobago.taglib.component.MenuSelectBooleanTag",
         "org.apache.myfaces.tobago.taglib.component.MenuSelectOneTag",
-        "org.apache.myfaces.tobago.taglib.component.MenuSeparatorTag" })
+        "org.apache.myfaces.tobago.taglib.component.MenuSeparatorTag"})
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UIMenu")
 public interface MenuTagDeclaration extends TobagoTagDeclaration, HasIdBindingAndRendered, HasLabelAndAccessKey,

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MessageTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MessageTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MessageTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MessageTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -47,7 +47,7 @@
   @UIComponentTagAttribute(type = "java.lang.Boolean", defaultValue = "false")
   void setShowDetail(String showDetail);
 
-   /**
+  /**
    * Flag indicating whether the summary should be included
    * The default is "true".
    */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MessagesTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MessagesTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MessagesTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/MessagesTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -57,7 +57,7 @@
   @UIComponentTagAttribute(type = "java.lang.Boolean", defaultValue = "false")
   void setShowDetail(String showDetail);
 
-   /**
+  /**
    * Flag indicating whether the summary should be included
    * The default is "true".
    */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ObjectTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ObjectTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ObjectTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ObjectTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -25,8 +25,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasId;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 02.04.2006
  * Time: 15:58:16
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/OutTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/OutTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/OutTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/OutTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -52,7 +52,7 @@
    * This flag is set to "true" by default.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.lang.Boolean" }, defaultValue = "true")
+  @UIComponentTagAttribute(type = {"java.lang.Boolean"}, defaultValue = "true")
   void setEscape(String escape);
 
   /**
@@ -60,6 +60,6 @@
    * Possible values are 'none', 'strong' and 'deleted'
    */
   @TagAttribute
-  @UIComponentTagAttribute(defaultValue = "none", allowedValues = { "none", "strong", "deleted" })
+  @UIComponentTagAttribute(defaultValue = "none", allowedValues = {"none", "strong", "deleted"})
   void setMarkup(String markup);
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PageTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -29,8 +29,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasState;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 30.03.2006
  * Time: 21:57:22
  */
@@ -42,9 +40,9 @@
     uiComponent = "org.apache.myfaces.tobago.component.UIPage",
     rendererType = "Page",
     facets =
-        { @Facet(name = "action", description ="Contains an instance of UICommand (tc:command) for an auto-action"),
+        {@Facet(name = "action", description = "Contains an instance of UICommand (tc:command) for an auto-action"),
         @Facet(name = "menuBar", description = "Menubar"),
-        @Facet(name="layout", description = "Contains an instance of UILayout")})
+        @Facet(name = "layout", description = "Contains an instance of UILayout")})
 
 public interface PageTagDeclaration extends TobagoBodyTagDeclaration, HasLabel, HasId, HasDimension, HasBinding,
     HasState {

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PanelTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PanelTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PanelTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PanelTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -26,8 +26,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasIdBindingAndRendered;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 11.02.2006
  * Time: 13:54:04
  */
@@ -40,8 +38,8 @@
     uiComponent = "org.apache.myfaces.tobago.component.UIPanel",
     rendererType = "Panel",
     facets = {
-    @Facet(name="reload", description = "Contains an instance of UIReload"),
-    @Facet(name="layout", description = "Contains an instance of UILayout")})
+    @Facet(name = "reload", description = "Contains an instance of UIReload"),
+    @Facet(name = "layout", description = "Contains an instance of UILayout")})
 public interface PanelTagDeclaration extends TobagoBodyTagDeclaration,
     HasIdBindingAndRendered, HasDeprecatedDimension {
 
@@ -52,5 +50,5 @@
   @TagAttribute
   @UIComponentTagAttribute(defaultValue = "none")
   void setMarkup(String markup);
-  
+
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PopupReferenceTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PopupReferenceTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PopupReferenceTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/PopupReferenceTag.java Tue Dec  4 14:12:14 2007
@@ -29,8 +29,6 @@
 import javax.faces.component.ActionSource;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: Jan 3, 2007
  * Time: 10:42:11 PM
  */
@@ -75,7 +73,7 @@
     }
     if (!(component instanceof ActionSource)) {
       // TODO Message resource i18n
-      throw new JspException("Component "+ component.getClass().getName() + " is not instanceof ActionSource");
+      throw new JspException("Component " + component.getClass().getName() + " is not instanceof ActionSource");
     }
     ActionSource actionSource = (ActionSource) component;
     actionSource.addActionListener(new PopupActionListener(forComponent));

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ProgressTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ProgressTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ProgressTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ProgressTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -39,7 +39,7 @@
     uiComponent = "org.apache.myfaces.tobago.component.UIProgress",
     rendererType = "Progress",
     facets = {@Facet(
-        name="complete",
+        name = "complete",
         description =
             "Contains an instance of UICommand (tc:command). The action is invoked if the full progress has reached")})
 public interface ProgressTagDeclaration extends BeanTagDeclaration, HasIdBindingAndRendered, HasTip, HasMarkup {
@@ -48,6 +48,6 @@
    * The current value of this component.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "javax.swing.BoundedRangeModel" })
+  @UIComponentTagAttribute(type = {"javax.swing.BoundedRangeModel"})
   void setValue(String value);
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ReloadTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ReloadTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ReloadTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ReloadTag.java Tue Dec  4 14:12:14 2007
@@ -25,8 +25,6 @@
 import javax.faces.component.UIComponent;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 28.05.2006
  * Time: 22:23:07
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ReloadTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ReloadTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ReloadTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ReloadTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -24,8 +24,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasIdBindingAndRendered;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 28.05.2006
  * Time: 22:31:38
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectBooleanCheckboxTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectBooleanCheckboxTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectBooleanCheckboxTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectBooleanCheckboxTag.java Tue Dec  4 14:12:14 2007
@@ -20,6 +20,7 @@
 import org.apache.myfaces.tobago.component.ComponentUtil;
 
 import org.apache.myfaces.tobago.component.UISelectBoolean;
+
 import javax.faces.component.UIComponent;
 
 public class SelectBooleanCheckboxTag extends InputTag

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectBooleanCheckboxTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectBooleanCheckboxTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectBooleanCheckboxTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectBooleanCheckboxTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -48,12 +48,12 @@
     uiComponent = "org.apache.myfaces.tobago.component.UISelectBoolean",
     rendererType = "SelectBooleanCheckbox",
     facets = {
-        @Facet(name = "click",
-            description =
-                "This facet can contain a UICommand that is invoked in case of a click event from the component"),
-        @Facet(name = "change",
-            description =
-                "This facet can contain a UICommand that is invoked in case of a change event from the component")
+    @Facet(name = "click",
+        description =
+            "This facet can contain a UICommand that is invoked in case of a click event from the component"),
+    @Facet(name = "change",
+        description =
+            "This facet can contain a UICommand that is invoked in case of a change event from the component")
         })
 
 public interface SelectBooleanCheckboxTagDeclaration extends BeanTagDeclaration, HasValidator,

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectItemTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectItemTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectItemTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectItemTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -27,8 +27,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasMarkup;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 02.04.2006
  * Time: 16:20:59
  */
@@ -46,7 +44,7 @@
    * by this component is disabled.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.lang.Boolean" }, defaultValue = "false")
+  @UIComponentTagAttribute(type = {"java.lang.Boolean"}, defaultValue = "false")
   void setItemDescription(String itemDescription);
 
   /**
@@ -54,7 +52,7 @@
    * by this component is disabled.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = { "java.lang.Boolean" }, defaultValue = "false")
+  @UIComponentTagAttribute(type = {"java.lang.Boolean"}, defaultValue = "false")
   void setItemDisabled(String itemDisabled);
 
   /**

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyCheckboxTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyCheckboxTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyCheckboxTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyCheckboxTag.java Tue Dec  4 14:12:14 2007
@@ -23,7 +23,6 @@
 import javax.faces.component.UIComponent;
 
 
-
 public class SelectManyCheckboxTag extends SelectManyTag implements SelectManyCheckboxTagDeclaration {
 
   private String renderRange;

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyCheckboxTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyCheckboxTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyCheckboxTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyCheckboxTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -40,7 +40,7 @@
  * Render a group of checkboxes.
  */
 @Tag(name = "selectManyCheckbox")
-@BodyContentDescription(anyTagOf= "(<f:selectItems>|<f:selectItem>|<tc:selectItem>)+ <f:facet>* ")
+@BodyContentDescription(anyTagOf = "(<f:selectItems>|<f:selectItem>|<tc:selectItem>)+ <f:facet>* ")
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UISelectMany",
     rendererType = "SelectManyCheckbox")

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyListboxTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyListboxTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyListboxTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectManyListboxTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -44,7 +44,7 @@
     rendererType = "SelectManyListbox")
 
 public interface SelectManyListboxTagDeclaration
-    extends SelectManyTagDeclaration, HasId, IsDisabled, 
+    extends SelectManyTagDeclaration, HasId, IsDisabled,
     HasDeprecatedHeight, IsInline, HasLabelAndAccessKey, IsRendered, HasBinding, HasTip, IsReadonly, IsRequired {
 
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneRadioTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -37,14 +37,14 @@
  * $Id$
  */
 /**
- *  Render a set of radiobuttons.
+ * Render a set of radiobuttons.
  */
 @Tag(name = "selectOneRadio")
 @BodyContentDescription(anyTagOf = "(<f:selectItems>|<f:selectItem>|<tc:selectItem>)+ <f:facet>* ")
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UISelectOne",
     rendererType = "SelectOneRadio",
-facets = {
+    facets = {
     @Facet(name = "click",
         description =
             "This facet can contain a UICommand that is invoked in case of a click event from the component"),

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectReferenceTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectReferenceTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectReferenceTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectReferenceTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -25,8 +25,6 @@
 import org.apache.myfaces.tobago.taglib.decl.HasIdBindingAndRendered;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 31.03.2006
  * Time: 22:02:37
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SeparatorTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SeparatorTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SeparatorTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SeparatorTag.java Tue Dec  4 14:12:14 2007
@@ -26,9 +26,9 @@
 * Time: 8:02:34 PM
 */
 
-public class SeparatorTag  extends TobagoTag implements SeparatorTagDeclaration {
+public class SeparatorTag extends TobagoTag implements SeparatorTagDeclaration {
 
-   public String getComponentType() {
+  public String getComponentType() {
     return UISeparator.COMPONENT_TYPE;
   }
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SeparatorTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SeparatorTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SeparatorTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SeparatorTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -28,7 +28,7 @@
 @Tag(name = "separator")
 @UIComponentTag(rendererType = "Separator",
     uiComponent = "org.apache.myfaces.tobago.component.UISeparator",
-    facets = { @Facet(name = "label", description = "This facet contains a UILabel") })
+    facets = {@Facet(name = "label", description = "This facet contains a UILabel")})
 
 public interface SeparatorTagDeclaration extends TobagoTagDeclaration, HasIdBindingAndRendered {
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SheetTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -28,8 +28,6 @@
 import org.apache.myfaces.tobago.component.UIData;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 08.04.2006
  * Time: 15:30:50
  */
@@ -42,7 +40,7 @@
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UIData",
     rendererType = "Sheet",
-    facets = {@Facet(name="reload", description = "Contains an instance of UIReload")})
+    facets = {@Facet(name = "reload", description = "Contains an instance of UIReload")})
 
 public interface SheetTagDeclaration extends TobagoTagDeclaration, HasIdBindingAndRendered {
   /**
@@ -198,7 +196,7 @@
    */
   @TagAttribute
   @UIComponentTagAttribute(type = "javax.faces.el.MethodBinding",
-       expression = DynamicExpression.METHOD_BINDING)
+      expression = DynamicExpression.METHOD_BINDING)
   void setStateChangeListener(String stateChangeListener);
 
   /**
@@ -215,7 +213,7 @@
    */
   @TagAttribute
   @UIComponentTagAttribute(type = "javax.faces.el.MethodBinding",
-       expression = DynamicExpression.METHOD_BINDING)
+      expression = DynamicExpression.METHOD_BINDING)
   void setSortActionListener(String sortActionListener);
 
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SubmittedValueLengthValidatorTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SubmittedValueLengthValidatorTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SubmittedValueLengthValidatorTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SubmittedValueLengthValidatorTag.java Tue Dec  4 14:12:14 2007
@@ -26,8 +26,6 @@
 import javax.servlet.jsp.JspException;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: Oct 17, 2006
  * Time: 12:35:01 AM
  */
@@ -36,7 +34,7 @@
  * Register an SubmittedValueLengthValidator instance on the UIComponent
  * associated with the closest parent UIComponent custom action.
  */
-@Tag(name="validateSubmittedValueLength")
+@Tag(name = "validateSubmittedValueLength")
 public class SubmittedValueLengthValidatorTag extends ValidatorTag {
 
   private static final long serialVersionUID = 6777040780038715924L;
@@ -47,7 +45,7 @@
   public String getMinimum() {
     return minimum;
   }
-  
+
   @TagAttribute()
   public void setMinimum(String minimum) {
     this.minimum = minimum;
@@ -56,6 +54,7 @@
   public String getMaximum() {
     return maximum;
   }
+
   @TagAttribute()
   public void setMaximum(String maximum) {
     this.maximum = maximum;
@@ -67,14 +66,14 @@
     if (minimum != null) {
       try {
         validator.setMinimum(Integer.parseInt(minimum));
-      } catch(NumberFormatException e) {
+      } catch (NumberFormatException e) {
         // ignore
       }
     }
     if (maximum != null) {
       try {
         validator.setMaximum(Integer.parseInt(maximum));
-      } catch(NumberFormatException e) {
+      } catch (NumberFormatException e) {
         // ignore
       }
     }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabChangeListenerTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabChangeListenerTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabChangeListenerTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabChangeListenerTag.java Tue Dec  4 14:12:14 2007
@@ -70,7 +70,6 @@
   }
 
 
-
   /**
    * <p>Create a new instance of the specified {@link TabChangeListener}
    * class, and register it with the {@link javax.faces.component.UIComponent} instance associated
@@ -101,7 +100,7 @@
     }
     if (!(component instanceof TabChangeSource)) {
       // TODO Message resource i18n
-      throw new JspException("Component "+ component.getClass().getName() + " is not instanceof TabChangeSource");
+      throw new JspException("Component " + component.getClass().getName() + " is not instanceof TabChangeSource");
     }
     TabChangeSource changeSource = (TabChangeSource) component;
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabGroupTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabGroupTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabGroupTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabGroupTag.java Tue Dec  4 14:12:14 2007
@@ -79,7 +79,7 @@
   public void setSwitchType(String switchType) {
     this.switchType = switchType;
   }
-  
+
   public void setImmediate(String immediate) {
     this.immediate = immediate;
   }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabGroupTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabGroupTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabGroupTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabGroupTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -28,8 +28,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsImmediateCommand;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 08.04.2006
  * Time: 14:53:06
  */
@@ -48,6 +46,7 @@
   /**
    * Deprecated! Use 'switchType' instead.
    * Flag indicating that tab switching is done by server request.
+   *
    * @deprecated
    */
   @TagAttribute
@@ -57,11 +56,11 @@
 
   /**
    * Flag indicating how tab switching should be done.
-   *
+   * <p/>
    * Possible values are:
-   *   "client"     : Tab switching id done on client, no server Request. This is default.
-   *   "reloadPage" : Tab switching id done by server request. Full page is reloaded.
-   *   "reloadTab"  : Tab switching id done by server request. Only the Tab is reloaded.
+   * "client"     : Tab switching id done on client, no server Request. This is default.
+   * "reloadPage" : Tab switching id done by server request. Full page is reloaded.
+   * "reloadTab"  : Tab switching id done by server request. Only the Tab is reloaded.
    */
   @TagAttribute
   @UIComponentTagAttribute(type = "java.lang.String",
@@ -71,16 +70,14 @@
   void setSwitchType(String switchType);
 
   /**
-   *
    * <strong>ValueBindingExpression</strong> pointing to a Integer to save the
    * component's selected Tab.
-   *
    */
-  @TagAttribute @UIComponentTagAttribute(type = "java.lang.Integer")
+  @TagAttribute
+  @UIComponentTagAttribute(type = "java.lang.Integer")
   void setSelectedIndex(String selectedIndex);
 
   /**
-   *
    * <strong>ValueBindingExpression</strong> pointing to a Integer to save the
    * component's selected Tab.
    */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TabTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -26,8 +26,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsDisabled;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 02.04.2006
  * Time: 16:29:31
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextAreaTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextAreaTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextAreaTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextAreaTag.java Tue Dec  4 14:12:14 2007
@@ -60,7 +60,7 @@
     this.rows = rows;
   }
 
-   public String getMarkup() {
+  public String getMarkup() {
     return markup;
   }
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextAreaTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextAreaTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextAreaTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextAreaTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -45,11 +45,11 @@
     uiComponent = "org.apache.myfaces.tobago.component.UIInput",
     rendererType = "TextArea")
 public interface TextAreaTagDeclaration extends TextInputTagDeclaration, HasIdBindingAndRendered,
-        HasConverter, IsReadonly, IsDisabled, HasDeprecatedDimension,
-        IsFocus, IsRequired, HasLabelAndAccessKey, HasTip {
+    HasConverter, IsReadonly, IsDisabled, HasDeprecatedDimension,
+    IsFocus, IsRequired, HasLabelAndAccessKey, HasTip {
 
   /**
-   *  The row count for this component.
+   * The row count for this component.
    */
   @TagAttribute
   @UIComponentTagAttribute()

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TextInputTag.java Tue Dec  4 14:12:14 2007
@@ -30,5 +30,5 @@
     return UIInput.COMPONENT_TYPE;
   }
 
- 
+
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TimeTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TimeTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TimeTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TimeTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -39,7 +39,7 @@
 @Tag(name = "time")
 @UIComponentTag(
     uiComponent = "org.apache.myfaces.tobago.component.UITimeInput",
-    rendererType =RENDERER_TYPE_TIME)
+    rendererType = RENDERER_TYPE_TIME)
 public interface TimeTagDeclaration
     extends InputTagDeclaration, HasIdBindingAndRendered,
     IsReadonly, IsDisabled, IsInline, HasLabelAndAccessKey, HasTip, IsRequired {

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoBodyTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoBodyTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoBodyTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoBodyTag.java Tue Dec  4 14:12:14 2007
@@ -48,8 +48,8 @@
     if (LOG.isWarnEnabled()) {
       UIComponent component = getComponentInstance();
       if (component != null && component.getRendersChildren() && !isBodyContentEmpty()) {
-        LOG.warn("BodyContent should be empty. Component with id "+ component.getId()
-            + " class "+component.getClass().getName() +" content "+ bodyContent.getString()
+        LOG.warn("BodyContent should be empty. Component with id " + component.getId()
+            + " class " + component.getClass().getName() + " content " + bodyContent.getString()
             + "  Please use the f:verbatim tag for nested content!");
       }
     }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoBodyTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoBodyTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoBodyTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoBodyTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -20,8 +20,6 @@
 import javax.servlet.jsp.tagext.BodyTag;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 14.03.2006
  * Time: 17:10:07
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TobagoTag.java Tue Dec  4 14:12:14 2007
@@ -176,7 +176,7 @@
     if (component instanceof OnComponentCreated
         && component.getAttributes().get(TOBAGO_COMPONENT_CREATED) == null) {
       component.getAttributes().put(TOBAGO_COMPONENT_CREATED, Boolean.TRUE);
-        ((OnComponentCreated) component).onComponentCreated();
+      ((OnComponentCreated) component).onComponentCreated();
     }
     return super.doEndTag();
   }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarCommandTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarCommandTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarCommandTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarCommandTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -27,8 +27,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsDisabled;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 10.04.2006
  * Time: 20:29:42
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectBooleanTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectBooleanTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectBooleanTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectBooleanTag.java Tue Dec  4 14:12:14 2007
@@ -23,7 +23,6 @@
 import javax.faces.component.UIComponent;
 
 
-
 public class ToolBarSelectBooleanTag extends SelectBooleanCommandTag
     implements ToolBarSelectBooleanTagDeclaration {
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectBooleanTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectBooleanTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectBooleanTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectBooleanTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -28,8 +28,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsDisabled;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 31.03.2006
  * Time: 22:35:28
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectOneTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectOneTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectOneTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarSelectOneTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -25,8 +25,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsDisabled;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 31.03.2006
  * Time: 22:36:59
  */
@@ -40,5 +38,5 @@
     uiComponent = "org.apache.myfaces.tobago.component.UISelectOneCommand",
     rendererType = "MenuCommand")
 public interface ToolBarSelectOneTagDeclaration extends TobagoTagDeclaration, AbstractCommandTagDeclaration,
-    HasIdBindingAndRendered, IsDisabled, HasCommandType, HasValue{
+    HasIdBindingAndRendered, IsDisabled, HasCommandType, HasValue {
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarTag.java Tue Dec  4 14:12:14 2007
@@ -70,7 +70,7 @@
     this.iconSize = iconSize;
   }
 
-    public void setOrientation(String orientation) {
-        this.orientation = orientation;
-    }
+  public void setOrientation(String orientation) {
+    this.orientation = orientation;
+  }
 }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/ToolBarTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -25,14 +25,12 @@
 import org.apache.myfaces.tobago.component.UIToolBar;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 11.02.2006
  * Time: 14:07:05
  */
 
 /**
- * <p />
+ * <p/>
  * Renders a toolbar.<p />
  * Allowed subcomponents are subtypes of UICommand i.e.
  * <code>'button'</code> and <code>'link'</code> tags.

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeListboxTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeListboxTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeListboxTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeListboxTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -31,8 +31,6 @@
 import org.apache.myfaces.tobago.taglib.decl.IsRequired;
 
 /*
- * Created by IntelliJ IDEA.
- * User: bommel
  * Date: 06.04.2006
  * Time: 22:32:57
  */

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeOldTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeOldTag.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeOldTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeOldTag.java Tue Dec  4 14:12:14 2007
@@ -51,7 +51,7 @@
   private String mode;
 
   private String tabIndex;
-  
+
   public String getComponentType() {
     return UITreeOld.COMPONENT_TYPE;
   }
@@ -126,6 +126,7 @@
   public void setActionListener(String actionListener) {
     this.actionListener = actionListener;
   }
+
   public String getActionListener() {
     return actionListener;
   }

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeOldTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeOldTagDeclaration.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeOldTagDeclaration.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/TreeOldTagDeclaration.java Tue Dec  4 14:12:14 2007
@@ -41,7 +41,7 @@
     uiComponent = "org.apache.myfaces.tobago.component.UITreeOld",
     rendererType = "TreeOld")
 public interface TreeOldTagDeclaration extends TobagoTagDeclaration,
-    HasIdBindingAndRendered, HasTreeNodeValue, HasState, HasIdReference, 
+    HasIdBindingAndRendered, HasTreeNodeValue, HasState, HasIdReference,
     HasActionListener, HasNameReference, IsRequired, HasTabIndex {
 
   /**
@@ -90,8 +90,8 @@
   /**
    * Bean property reference to fetch the disabled state for the treeNode's.<br />
    * Example:<br />
-   *   a disabledReference="userObject.disabled" try's to invoke
-   *   <code>&lt;UITreeNode>.getUserObject().getDisabled()</code> to fetch the state.
+   * a disabledReference="userObject.disabled" try's to invoke
+   * <code>&lt;UITreeNode>.getUserObject().getDisabled()</code> to fetch the state.
    */
   @TagAttribute
   @UIComponentTagAttribute()
@@ -102,7 +102,7 @@
    */
   @TagAttribute
   @UIComponentTagAttribute(defaultValue = "tree",
-  allowedValues = {"tree", "menu"})
+      allowedValues = {"tree", "menu"})
   void setMode(String mode);
 
 

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/package-info.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/package-info.java?rev=601107&r1=601106&r2=601107&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/package-info.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/package-info.java Tue Dec  4 14:12:14 2007
@@ -6,8 +6,7 @@
 @org.apache.myfaces.tobago.apt.annotation.Taglib(
     shortName = "tc", uri = "http://myfaces.apache.org/tobago/component",
     listener = "org.apache.myfaces.tobago.webapp.TobagoServletContextListener",
-    fileName = "tobago.tld", displayName = "Tobago Components")
-package org.apache.myfaces.tobago.taglib.component;
+    fileName = "tobago.tld", displayName = "Tobago Components") package org.apache.myfaces.tobago.taglib.component;
 
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more