You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2006/11/23 12:10:01 UTC

svn commit: r478533 - in /myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom: aliasbean/FacesEventWrapper.java dojo/DojoUtils.java

Author: mmarinschek
Date: Thu Nov 23 03:10:01 2006
New Revision: 478533

URL: http://svn.apache.org/viewvc?view=rev&rev=478533
Log:
cosmetic changes

Modified:
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/aliasbean/FacesEventWrapper.java
    myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/dojo/DojoUtils.java

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/aliasbean/FacesEventWrapper.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/aliasbean/FacesEventWrapper.java?view=diff&rev=478533&r1=478532&r2=478533
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/aliasbean/FacesEventWrapper.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/aliasbean/FacesEventWrapper.java Thu Nov 23 03:10:01 2006
@@ -21,6 +21,7 @@
 import javax.faces.event.FacesEvent;
 import javax.faces.event.FacesListener;
 import javax.faces.event.PhaseId;
+import javax.faces.component.UIComponent;
 
 /**
  * @author Sylvain Vieujot (latest modification by $Author$)
@@ -31,12 +32,7 @@
     private static final long serialVersionUID = -6878195444276533114L;
     private FacesEvent _wrappedFacesEvent;
 
-    public FacesEventWrapper(FacesEvent facesEvent, AliasBeansScope redirectComponent) {
-        super(redirectComponent);
-        _wrappedFacesEvent = facesEvent;
-    }
-	
-    public FacesEventWrapper(FacesEvent facesEvent, AliasBean redirectComponent) {
+    public FacesEventWrapper(FacesEvent facesEvent, UIComponent redirectComponent) {
         super(redirectComponent);
         _wrappedFacesEvent = facesEvent;
     }

Modified: myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/dojo/DojoUtils.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/dojo/DojoUtils.java?view=diff&rev=478533&r1=478532&r2=478533
==============================================================================
--- myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/dojo/DojoUtils.java (original)
+++ myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/custom/dojo/DojoUtils.java Thu Nov 23 03:10:01 2006
@@ -233,7 +233,7 @@
      * @param location
      *            the script location
      * @throws IOException
-     * @see http://blog.dojotoolkit.org/2006/01/11/putting-your-code-outside-of-the-dojo-source-tree
+     * @link http://blog.dojotoolkit.org/2006/01/11/putting-your-code-outside-of-the-dojo-source-tree
      */
     public static void addNamespace(FacesContext facesContext, UIComponent component, String namespace, String location) throws IOException {