[jboss-cvs] jboss-seam/src/main/org/jboss/seam ...

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


  User: gavin   
  Date: 06/10/25 11:14:34

  Modified:    src/main/org/jboss/seam  Component.java
  Log:
  many minor
  
  Revision  Changes    Path
  1.196     +6 -2      jboss-seam/src/main/org/jboss/seam/Component.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Component.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/Component.java,v
  retrieving revision 1.195
  retrieving revision 1.196
  diff -u -b -r1.195 -r1.196
  --- Component.java	24 Oct 2006 11:50:10 -0000	1.195
  +++ Component.java	25 Oct 2006 15:14:34 -0000	1.196
  @@ -111,9 +111,10 @@
    *
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
    * @author Gavin King
  - * @version $Revision: 1.195 $
  + * @version $Revision: 1.196 $
    */
   @Scope(ScopeType.APPLICATION)
  + at SuppressWarnings("deprecation")
   public class Component
   {
      public static final String PROPERTIES = "org.jboss.seam.properties";
  @@ -1760,6 +1761,7 @@
         return name;
      }
   
  +   @Override
      public String toString()
      {
         return "Component(" + name + ")";
  @@ -1784,7 +1786,7 @@
         }
         interfaces.add(Proxy.class);
         en.setInterfaces( interfaces.toArray( new Class[0] ) );
  -      return (Class<Factory>) en.createClass();
  +      return en.createClass();
      }
   
      public InterceptionType getInterceptionType()
  @@ -1820,6 +1822,7 @@
            return value;
         }
   
  +      @Override
         public String toString()
         {
            return "ConstantInitialValue(" + value + ")";
  @@ -1888,6 +1891,7 @@
            return Expressions.instance().createMethodBinding(expression);
         }
   
  +      @Override
         public String toString()
         {
            return "ELInitialValue(" + expression + ")";
  
  
  



More information about the jboss-cvs-commits mailing list