[jboss-cvs] jboss-seam/src/ui/org/jboss/seam/ui/tag ...

Gavin King gavin.king at jboss.com
Wed Oct 25 11:37:37 EDT 2006


  User: gavin   
  Date: 06/10/25 11:37:37

  Modified:    src/ui/org/jboss/seam/ui/tag                    
                        CacheTag.java CommandButtonTag.java
                        CommandLinkTag.java ConvertDateTimeTag.java
                        DecorateTag.java DivTag.java
                        HtmlCommandButtonTagBase.java
                        HtmlCommandLinkTagBase.java
                        HtmlComponentBodyTagBase.java
                        HtmlComponentTagBase.java HtmlDataTableTagBase.java
                        HtmlMessageTagBase.java HtmlOutputLinkTagBase.java
                        LinkTag.java MessageTag.java SecureTag.java
                        SimpleActionMethodBinding.java SpanTag.java
                        UIComponentBodyTagBase.java UIComponentTagBase.java
  Log:
  many minor
  
  Revision  Changes    Path
  1.2       +3 -0      jboss-seam/src/ui/org/jboss/seam/ui/tag/CacheTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/CacheTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- CacheTag.java	14 Jul 2006 16:43:37 -0000	1.1
  +++ CacheTag.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -7,11 +7,13 @@
   
   public class CacheTag extends UIComponentTagBase
   {
  +   @Override
      public String getComponentType()
      {
         return UICache.COMPONENT_TYPE;
      }
   
  +   @Override
      public String getRendererType()
      {
         return null;
  @@ -41,6 +43,7 @@
         this.region = region;
      }
   
  +   @Override
      protected void setProperties(UIComponent component)
      {
         super.setProperties(component);
  
  
  
  1.2       +4 -5      jboss-seam/src/ui/org/jboss/seam/ui/tag/CommandButtonTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CommandButtonTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/CommandButtonTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- CommandButtonTag.java	9 Aug 2006 20:30:10 -0000	1.1
  +++ CommandButtonTag.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -19,21 +19,20 @@
   
   
   /**
  - * @author Manfred Geiler (latest modification by $Author: ssilvert $)
  + * @author Manfred Geiler (latest modification by $Author: gavin $)
    * @author Martin Marinschek
  - * @version $Revision: 1.1 $ $Date: 2006/08/09 20:30:10 $
  + * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
    */
   public class CommandButtonTag
       extends HtmlCommandButtonTagBase
  -        
  -    
  -
   {
  +    @Override
       public String getComponentType()
       {
           return HtmlCommandButton.COMPONENT_TYPE;
       }
   
  +    @Override
       public String getRendererType()
       {
           return "javax.faces.Button";
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/CommandLinkTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CommandLinkTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/CommandLinkTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- CommandLinkTag.java	2 Oct 2006 18:20:36 -0000	1.1
  +++ CommandLinkTag.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -21,16 +21,18 @@
   /**
    * @author Manfred Geiler (latest modification by $Author: gavin $)
    * @author Martin Marinschek
  - * @version $Revision: 1.1 $ $Date: 2006/10/02 18:20:36 $
  + * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
    */
   public class CommandLinkTag
       extends HtmlCommandLinkTagBase
   {
  +    @Override
       public String getComponentType()
       {
           return HtmlCommandLink.COMPONENT_TYPE;
       }
   
  +    @Override
       public String getRendererType()
       {
           return "javax.faces.Link";
  
  
  
  1.2       +2 -0      jboss-seam/src/ui/org/jboss/seam/ui/tag/ConvertDateTimeTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConvertDateTimeTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/ConvertDateTimeTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ConvertDateTimeTag.java	11 Oct 2006 21:21:20 -0000	1.1
  +++ ConvertDateTimeTag.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -55,12 +55,14 @@
         this.type = type;
      }
   
  +   @Override
      public void setPageContext(PageContext context)
      {
          super.setPageContext(context);
          setConverterId(CONVERTER_ID);
      }
   
  +   @Override
      protected Converter createConverter() throws JspException
      {
          DateTimeConverter converter = (DateTimeConverter) super.createConverter();
  
  
  
  1.2       +1 -0      jboss-seam/src/ui/org/jboss/seam/ui/tag/DecorateTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DecorateTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/DecorateTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- DecorateTag.java	2 Oct 2006 18:20:36 -0000	1.1
  +++ DecorateTag.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -26,6 +26,7 @@
         this.forId = forId;
      }
   
  +   @Override
      protected void setProperties(UIComponent component)
      {
          super.setProperties(component);
  
  
  
  1.2       +13 -8     jboss-seam/src/ui/org/jboss/seam/ui/tag/DivTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DivTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/DivTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- DivTag.java	2 Oct 2006 18:20:36 -0000	1.1
  +++ DivTag.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -29,11 +29,13 @@
   
   public class DivTag extends HtmlComponentTagBase
   {
  +    @Override
       public String getComponentType()
       {
           return HtmlDiv.COMPONENT_TYPE;
       }
   
  +    @Override
       public String getRendererType()
       {
           return null;
  @@ -42,6 +44,7 @@
       private String styleClass;
       private String style;
   
  +    @Override
       protected void setProperties(UIComponent component)
       {
           super.setProperties(component);
  @@ -49,11 +52,13 @@
           setStringProperty(component, "style", style);
       }
   
  +    @Override
      public void setStyle(String style)
      {
         this.style = style;
      }
   
  +    @Override
      public void setStyleClass(String styleClass)
      {
         this.styleClass = styleClass;
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlCommandButtonTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HtmlCommandButtonTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlCommandButtonTagBase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- HtmlCommandButtonTagBase.java	9 Aug 2006 20:30:10 -0000	1.1
  +++ HtmlCommandButtonTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -22,9 +22,9 @@
   
   
   /**
  - * @author Manfred Geiler (latest modification by $Author: ssilvert $)
  + * @author Manfred Geiler (latest modification by $Author: gavin $)
    * @author Martin Marinschek
  - * @version $Revision: 1.1 $ $Date: 2006/08/09 20:30:10 $
  + * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
    */
   public abstract class HtmlCommandButtonTagBase
       extends HtmlComponentTagBase
  @@ -59,6 +59,7 @@
       // HtmlCommandButton attributes
       private String _image;
   
  +    @Override
       public void release() {
           super.release();
           _accesskey=null;
  @@ -77,6 +78,7 @@
           _image=null;
       }
   
  +    @Override
       protected void setProperties(UIComponent component)
       {
           super.setProperties(component);
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlCommandLinkTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HtmlCommandLinkTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlCommandLinkTagBase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- HtmlCommandLinkTagBase.java	10 Jun 2006 15:22:59 -0000	1.1
  +++ HtmlCommandLinkTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -23,7 +23,7 @@
   /**
    * @author Manfred Geiler (latest modification by $Author: gavin $)
    * @author Martin Marinschek
  - * @version $Revision: 1.1 $ $Date: 2006/06/10 15:22:59 $
  + * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
    */
   public abstract class HtmlCommandLinkTagBase
       extends HtmlComponentTagBase
  @@ -60,6 +60,7 @@
       private String _immediate;
       private String _actionListener;
   
  +    @Override
       public void release() {
           super.release();
           _accesskey=null;
  @@ -79,6 +80,7 @@
           _actionListener=null;
       }
   
  +    @Override
       protected void setProperties(UIComponent component)
       {
           super.setProperties(component);
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlComponentBodyTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HtmlComponentBodyTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlComponentBodyTagBase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- HtmlComponentBodyTagBase.java	10 Jun 2006 15:32:11 -0000	1.1
  +++ HtmlComponentBodyTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -21,7 +21,7 @@
   
   /**
    * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.1 $ $Date: 2006/06/10 15:32:11 $
  + * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
    */
   public abstract class HtmlComponentBodyTagBase
           extends UIComponentBodyTagBase
  @@ -47,6 +47,7 @@
       private String _onmouseover;
       private String _onmouseup;
   
  +    @Override
       public void release() {
           super.release();
           _dir=null;
  @@ -66,6 +67,7 @@
           _onmouseup=null;
       }
   
  +    @Override
       protected void setProperties(UIComponent component)
       {
           super.setProperties(component);
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlComponentTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HtmlComponentTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlComponentTagBase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- HtmlComponentTagBase.java	10 Jun 2006 15:22:59 -0000	1.1
  +++ HtmlComponentTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -21,7 +21,7 @@
   
   /**
    * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.1 $ $Date: 2005-05-11 12:45:06 -0400 (Wed, 11 May
  + * @version $Revision: 1.2 $ $Date: 2005-05-11 12:45:06 -0400 (Wed, 11 May
    *          2005) $
    */
   public abstract class HtmlComponentTagBase extends UIComponentTagBase
  @@ -59,6 +59,7 @@
   
      private String _onmouseup;
   
  +   @Override
      public void release()
      {
         super.release();
  @@ -81,6 +82,7 @@
   
      }
   
  +   @Override
      protected void setProperties(UIComponent component)
      {
         super.setProperties(component);
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlDataTableTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HtmlDataTableTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlDataTableTagBase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- HtmlDataTableTagBase.java	10 Jun 2006 15:32:11 -0000	1.1
  +++ HtmlDataTableTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -23,7 +23,7 @@
   
   /**
    * @author Thomas Spiegl (latest modification by $Author: gavin $)
  - * @version $Revision: 1.1 $ $Date: 2006/06/10 15:32:11 $
  + * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
    */
   public abstract class HtmlDataTableTagBase
           extends HtmlComponentBodyTagBase
  @@ -67,6 +67,7 @@
       private String _var;
       private String _first;
   
  +    @Override
       public void release() {
           super.release();
           _align=null;
  @@ -91,6 +92,7 @@
           _first=null;
       }
   
  +    @Override
       protected void setProperties(UIComponent component)
       {
           super.setProperties(component);
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlMessageTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HtmlMessageTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlMessageTagBase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- HtmlMessageTagBase.java	2 Oct 2006 18:20:36 -0000	1.1
  +++ HtmlMessageTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -21,7 +21,7 @@
   
   /**
    * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.1 $ $Date: 2006/10/02 18:20:36 $
  + * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
    */
   public abstract class HtmlMessageTagBase
           extends HtmlComponentTagBase
  @@ -52,6 +52,7 @@
       private String _fatalStyle;
       private String _tooltip;
   
  +    @Override
       public void release() {
           super.release();
           _for=null;
  @@ -68,6 +69,7 @@
           _tooltip=null;
       }
   
  +    @Override
       protected void setProperties(UIComponent component)
       {
           super.setProperties(component);
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlOutputLinkTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HtmlOutputLinkTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/HtmlOutputLinkTagBase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- HtmlOutputLinkTagBase.java	2 Oct 2006 18:20:36 -0000	1.1
  +++ HtmlOutputLinkTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -23,7 +23,7 @@
   /**
    * @author Manfred Geiler (latest modification by $Author: gavin $)
    * @author Martin Marinschek
  - * @version $Revision: 1.1 $ $Date: 2006/10/02 18:20:36 $
  + * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
    */
   public abstract class HtmlOutputLinkTagBase
       extends HtmlComponentTagBase
  @@ -57,6 +57,7 @@
   
       //HtmlCommandLink Attributes
   
  +    @Override
       public void release() {
           super.release();
           _accesskey=null;
  @@ -73,6 +74,7 @@
           _onfocus=null;
       }
   
  +    @Override
       protected void setProperties(UIComponent component)
       {
           super.setProperties(component);
  
  
  
  1.9       +3 -0      jboss-seam/src/ui/org/jboss/seam/ui/tag/LinkTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: LinkTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/LinkTag.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- LinkTag.java	2 Oct 2006 18:20:36 -0000	1.8
  +++ LinkTag.java	25 Oct 2006 15:37:37 -0000	1.9
  @@ -29,11 +29,13 @@
   
   public class LinkTag extends HtmlOutputLinkTagBase
   {
  +    @Override
       public String getComponentType()
       {
           return HtmlLink.COMPONENT_TYPE;
       }
   
  +    @Override
       public String getRendererType()
       {
           return null;
  @@ -48,6 +50,7 @@
       private String taskInstance;
       private String fragment;
   
  +    @Override
       protected void setProperties(UIComponent component)
       {
           super.setProperties(component);
  
  
  
  1.2       +2 -0      jboss-seam/src/ui/org/jboss/seam/ui/tag/MessageTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MessageTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/MessageTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- MessageTag.java	2 Oct 2006 18:20:36 -0000	1.1
  +++ MessageTag.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -22,11 +22,13 @@
    */
   public class MessageTag extends HtmlMessageTagBase
   {
  +    @Override
       public String getComponentType()
       {
           return HtmlMessageDecoration.COMPONENT_TYPE;
       }
   
  +    @Override
       public String getRendererType()
       {
           return "javax.faces.Message";
  
  
  
  1.2       +1 -0      jboss-seam/src/ui/org/jboss/seam/ui/tag/SecureTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SecureTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/SecureTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- SecureTag.java	13 Oct 2006 04:53:46 -0000	1.1
  +++ SecureTag.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -28,6 +28,7 @@
       return null;
     }
   
  +  @Override
     protected void setProperties(UIComponent component)
     {
       super.setProperties(component);
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/SimpleActionMethodBinding.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SimpleActionMethodBinding.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/SimpleActionMethodBinding.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- SimpleActionMethodBinding.java	10 Jun 2006 15:32:11 -0000	1.1
  +++ SimpleActionMethodBinding.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -23,7 +23,7 @@
   
   /**
    * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.1 $ $Date: 2006/06/10 15:32:11 $
  + * @version $Revision: 1.2 $ $Date: 2006/10/25 15:37:37 $
    */
   public class SimpleActionMethodBinding
           extends MethodBinding
  @@ -38,11 +38,13 @@
           _outcome = outcome;
       }
   
  +    @Override
       public Object invoke(FacesContext facescontext, Object aobj[]) throws EvaluationException, MethodNotFoundException
       {
           return _outcome;
       }
   
  +    @Override
       public Class getType(FacesContext facescontext) throws MethodNotFoundException
       {
           return String.class;
  
  
  
  1.2       +13 -8     jboss-seam/src/ui/org/jboss/seam/ui/tag/SpanTag.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SpanTag.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/SpanTag.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- SpanTag.java	2 Oct 2006 18:20:36 -0000	1.1
  +++ SpanTag.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -29,11 +29,13 @@
   
   public class SpanTag extends HtmlComponentTagBase
   {
  +    @Override
       public String getComponentType()
       {
           return HtmlSpan.COMPONENT_TYPE;
       }
   
  +    @Override
       public String getRendererType()
       {
           return null;
  @@ -42,6 +44,7 @@
       private String styleClass;
       private String style;
   
  +    @Override
       protected void setProperties(UIComponent component)
       {
           super.setProperties(component);
  @@ -49,11 +52,13 @@
           setStringProperty(component, "style", style);
       }
   
  +    @Override
      public void setStyle(String style)
      {
         this.style = style;
      }
   
  +    @Override
      public void setStyleClass(String styleClass)
      {
         this.styleClass = styleClass;
  
  
  
  1.2       +4 -2      jboss-seam/src/ui/org/jboss/seam/ui/tag/UIComponentBodyTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIComponentBodyTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/UIComponentBodyTagBase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- UIComponentBodyTagBase.java	10 Jun 2006 15:32:11 -0000	1.1
  +++ UIComponentBodyTagBase.java	25 Oct 2006 15:37:37 -0000	1.2
  @@ -28,13 +28,14 @@
   
   /**
    * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.1 $ $Date: 2005-05-11 12:45:06 -0400 (Wed, 11 May
  + * @version $Revision: 1.2 $ $Date: 2005-05-11 12:45:06 -0400 (Wed, 11 May
    *          2005) $
    */
   public abstract class UIComponentBodyTagBase extends UIComponentBodyTag
   {
      private static final Log log = LogFactory.getLog(UIComponentBodyTagBase.class);
   
  +   @Override
      public int doEndTag() throws JspException
      {
         if (log.isWarnEnabled())
  @@ -93,6 +94,7 @@
   
      // attributes id, rendered and binding are handled by UIComponentTag
   
  +   @Override
      protected void setProperties(UIComponent component)
      {
         super.setProperties(component);
  
  
  
  1.5       +3 -1      jboss-seam/src/ui/org/jboss/seam/ui/tag/UIComponentTagBase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIComponentTagBase.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/ui/org/jboss/seam/ui/tag/UIComponentTagBase.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- UIComponentTagBase.java	30 Sep 2006 01:36:14 -0000	1.4
  +++ UIComponentTagBase.java	25 Oct 2006 15:37:37 -0000	1.5
  @@ -37,7 +37,7 @@
   
   /**
    * @author Manfred Geiler (latest modification by $Author: gavin $)
  - * @version $Revision: 1.4 $ $Date: 2005-05-11 12:45:06 -0400 (Wed, 11 May
  + * @version $Revision: 1.5 $ $Date: 2005-05-11 12:45:06 -0400 (Wed, 11 May
    *          2005) $
    */
   public abstract class UIComponentTagBase extends UIComponentTag
  @@ -51,6 +51,7 @@
   
      // attributes id, rendered and binding are handled by UIComponentTag
   
  +   @Override
      public void release()
      {
         super.release();
  @@ -58,6 +59,7 @@
         _converter = null;
      }
   
  +   @Override
      protected void setProperties(UIComponent component)
      {
         super.setProperties(component);
  
  
  



More information about the jboss-cvs-commits mailing list