You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2006/06/23 14:34:45 UTC

svn commit: r416703 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIOutput.java

Author: lofwyr
Date: Fri Jun 23 05:34:44 2006
New Revision: 416703

URL: http://svn.apache.org/viewvc?rev=416703&view=rev
Log:
add override annot

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIOutput.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIOutput.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIOutput.java?rev=416703&r1=416702&r2=416703&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIOutput.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIOutput.java Fri Jun 23 05:34:44 2006
@@ -36,6 +36,7 @@
   private String tip;
   private boolean createSpan = true;
 
+  @Override
   public void restoreState(FacesContext context, Object state) {
     Object[] values = (Object[]) state;
     super.restoreState(context, values[0]);
@@ -45,6 +46,7 @@
     createSpan = (Boolean) values[4];
    }
 
+  @Override
   public Object saveState(FacesContext context) {
     Object[] values  = new Object[5];
     values[0] = super.saveState(context);