You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2012/03/15 23:12:16 UTC

svn commit: r1301241 - in /myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces: component/behavior/ component/html/ext/behavior/ custom/calendar/ custom/document/ custom/toggle/

Author: lu4242
Date: Thu Mar 15 22:12:16 2012
New Revision: 1301241

URL: http://svn.apache.org/viewvc?rev=1301241&view=rev
Log:
fix dependency from shared_impl to shared_tomahawk

Modified:
    myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/behavior/HtmlClientEventAttributesUtil.java
    myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandButtonClientBehaviorRendererTest.java
    myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandLinkClientBehaviorRendererTest.java
    myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlOutputLabelClientBehaviorRendererTest.java
    myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarInlineClientBehaviorRendererTest.java
    myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarPopupClientBehaviorRendererTest.java
    myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/document/DocumentBodyClientBehaviorRendererTest.java
    myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/toggle/ToggleLinkClientBehaviorRendererTest.java

Modified: myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/behavior/HtmlClientEventAttributesUtil.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/behavior/HtmlClientEventAttributesUtil.java?rev=1301241&r1=1301240&r2=1301241&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/behavior/HtmlClientEventAttributesUtil.java (original)
+++ myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/behavior/HtmlClientEventAttributesUtil.java Thu Mar 15 22:12:16 2012
@@ -18,8 +18,8 @@
  */
 package org.apache.myfaces.component.behavior;
 
-import org.apache.myfaces.shared_impl.renderkit.ClientBehaviorEvents;
-import org.apache.myfaces.shared_impl.renderkit.html.HTML;
+import org.apache.myfaces.shared_tomahawk.renderkit.ClientBehaviorEvents;
+import org.apache.myfaces.shared_tomahawk.renderkit.html.HTML;
 
 public class HtmlClientEventAttributesUtil
 {
@@ -44,7 +44,7 @@ public class HtmlClientEventAttributesUt
     public static HtmlRenderedClientEventAttr[] generateClientBehaviorInputEventAttrs()
     {
         return (HtmlRenderedClientEventAttr[]) 
-            org.apache.myfaces.shared_impl.util.ArrayUtils.concat( 
+            org.apache.myfaces.shared_tomahawk.util.ArrayUtils.concat( 
                 generateClientBehaviorEventAttrs(),
                 new HtmlRenderedClientEventAttr[]{
                     new HtmlRenderedClientEventAttr(HTML.ONBLUR_ATTR, ClientBehaviorEvents.BLUR),

Modified: myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandButtonClientBehaviorRendererTest.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandButtonClientBehaviorRendererTest.java?rev=1301241&r1=1301240&r2=1301241&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandButtonClientBehaviorRendererTest.java (original)
+++ myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandButtonClientBehaviorRendererTest.java Thu Mar 15 22:12:16 2012
@@ -25,9 +25,9 @@ import org.apache.myfaces.component.beha
 import org.apache.myfaces.component.behavior.HtmlClientEventAttributesUtil;
 import org.apache.myfaces.component.behavior.HtmlRenderedClientEventAttr;
 import org.apache.myfaces.component.html.ext.HtmlCommandButton;
-import org.apache.myfaces.shared_impl.renderkit.ClientBehaviorEvents;
-import org.apache.myfaces.shared_impl.renderkit.html.HTML;
-import org.apache.myfaces.shared_impl.util.ArrayUtils;
+import org.apache.myfaces.shared_tomahawk.renderkit.ClientBehaviorEvents;
+import org.apache.myfaces.shared_tomahawk.renderkit.html.HTML;
+import org.apache.myfaces.shared_tomahawk.util.ArrayUtils;
 
 /**
  * @author Leonardo Uribe (latest modification by $Author: jankeesvanandel $)

Modified: myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandLinkClientBehaviorRendererTest.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandLinkClientBehaviorRendererTest.java?rev=1301241&r1=1301240&r2=1301241&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandLinkClientBehaviorRendererTest.java (original)
+++ myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlCommandLinkClientBehaviorRendererTest.java Thu Mar 15 22:12:16 2012
@@ -26,9 +26,9 @@ import org.apache.myfaces.component.beha
 import org.apache.myfaces.component.behavior.HtmlClientEventAttributesUtil;
 import org.apache.myfaces.component.behavior.HtmlRenderedClientEventAttr;
 import org.apache.myfaces.component.html.ext.HtmlCommandLink;
-import org.apache.myfaces.shared_impl.renderkit.ClientBehaviorEvents;
-import org.apache.myfaces.shared_impl.renderkit.html.HTML;
-import org.apache.myfaces.shared_impl.util.ArrayUtils;
+import org.apache.myfaces.shared_tomahawk.renderkit.ClientBehaviorEvents;
+import org.apache.myfaces.shared_tomahawk.renderkit.html.HTML;
+import org.apache.myfaces.shared_tomahawk.util.ArrayUtils;
 
 /**
  * @author Leonardo Uribe (latest modification by $Author: jankeesvanandel $)

Modified: myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlOutputLabelClientBehaviorRendererTest.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlOutputLabelClientBehaviorRendererTest.java?rev=1301241&r1=1301240&r2=1301241&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlOutputLabelClientBehaviorRendererTest.java (original)
+++ myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/component/html/ext/behavior/HtmlOutputLabelClientBehaviorRendererTest.java Thu Mar 15 22:12:16 2012
@@ -24,9 +24,9 @@ import org.apache.myfaces.component.beha
 import org.apache.myfaces.component.behavior.HtmlClientEventAttributesUtil;
 import org.apache.myfaces.component.behavior.HtmlRenderedClientEventAttr;
 import org.apache.myfaces.component.html.ext.HtmlOutputLabel;
-import org.apache.myfaces.shared_impl.renderkit.ClientBehaviorEvents;
-import org.apache.myfaces.shared_impl.renderkit.html.HTML;
-import org.apache.myfaces.shared_impl.util.ArrayUtils;
+import org.apache.myfaces.shared_tomahawk.renderkit.ClientBehaviorEvents;
+import org.apache.myfaces.shared_tomahawk.renderkit.html.HTML;
+import org.apache.myfaces.shared_tomahawk.util.ArrayUtils;
 
 /**
  * @author Leonardo Uribe (latest modification by $Author: jankeesvanandel $)

Modified: myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarInlineClientBehaviorRendererTest.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarInlineClientBehaviorRendererTest.java?rev=1301241&r1=1301240&r2=1301241&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarInlineClientBehaviorRendererTest.java (original)
+++ myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarInlineClientBehaviorRendererTest.java Thu Mar 15 22:12:16 2012
@@ -25,8 +25,8 @@ import org.apache.myfaces.component.beha
 import org.apache.myfaces.component.behavior.HtmlClientEventAttributesUtil;
 import org.apache.myfaces.component.behavior.HtmlRenderedClientEventAttr;
 import org.apache.myfaces.custom.calendar.HtmlInputCalendar;
-import org.apache.myfaces.shared_impl.renderkit.ClientBehaviorEvents;
-import org.apache.myfaces.shared_impl.renderkit.html.HTML;
+import org.apache.myfaces.shared_tomahawk.renderkit.ClientBehaviorEvents;
+import org.apache.myfaces.shared_tomahawk.renderkit.html.HTML;
 import org.junit.Ignore;
 import org.junit.Test;
 
@@ -43,7 +43,7 @@ public class HtmlCalendarInlineClientBeh
     {
         super.setUp();
         attrs = (HtmlRenderedClientEventAttr[]) 
-            org.apache.myfaces.shared_impl.util.ArrayUtils.concat( 
+            org.apache.myfaces.shared_tomahawk.util.ArrayUtils.concat( 
                     HtmlClientEventAttributesUtil.generateClientBehaviorEventAttrs(),
                 new HtmlRenderedClientEventAttr[]{
                     new HtmlRenderedClientEventAttr(HTML.ONBLUR_ATTR, ClientBehaviorEvents.BLUR),

Modified: myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarPopupClientBehaviorRendererTest.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarPopupClientBehaviorRendererTest.java?rev=1301241&r1=1301240&r2=1301241&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarPopupClientBehaviorRendererTest.java (original)
+++ myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/calendar/HtmlCalendarPopupClientBehaviorRendererTest.java Thu Mar 15 22:12:16 2012
@@ -25,8 +25,6 @@ import org.apache.myfaces.component.beha
 import org.apache.myfaces.component.behavior.HtmlClientEventAttributesUtil;
 import org.apache.myfaces.component.behavior.HtmlRenderedClientEventAttr;
 import org.apache.myfaces.custom.calendar.HtmlInputCalendar;
-import org.apache.myfaces.shared_impl.renderkit.ClientBehaviorEvents;
-import org.apache.myfaces.shared_impl.renderkit.html.HTML;
 import org.junit.Ignore;
 import org.junit.Test;
 

Modified: myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/document/DocumentBodyClientBehaviorRendererTest.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/document/DocumentBodyClientBehaviorRendererTest.java?rev=1301241&r1=1301240&r2=1301241&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/document/DocumentBodyClientBehaviorRendererTest.java (original)
+++ myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/document/DocumentBodyClientBehaviorRendererTest.java Thu Mar 15 22:12:16 2012
@@ -23,8 +23,8 @@ import javax.faces.component.UIComponent
 import org.apache.myfaces.component.behavior.AbstractClientBehaviorTestCase;
 import org.apache.myfaces.component.behavior.HtmlClientEventAttributesUtil;
 import org.apache.myfaces.component.behavior.HtmlRenderedClientEventAttr;
-import org.apache.myfaces.shared_impl.renderkit.ClientBehaviorEvents;
-import org.apache.myfaces.shared_impl.renderkit.html.HTML;
+import org.apache.myfaces.shared_tomahawk.renderkit.ClientBehaviorEvents;
+import org.apache.myfaces.shared_tomahawk.renderkit.html.HTML;
 import org.junit.Ignore;
 import org.junit.Test;
 
@@ -41,7 +41,7 @@ public class DocumentBodyClientBehaviorR
     {
         super.setUp();
         attrs = (HtmlRenderedClientEventAttr[]) 
-            org.apache.myfaces.shared_impl.util.ArrayUtils.concat( 
+            org.apache.myfaces.shared_tomahawk.util.ArrayUtils.concat( 
                     HtmlClientEventAttributesUtil.generateClientBehaviorEventAttrs(),
                 new HtmlRenderedClientEventAttr[]{
                     new HtmlRenderedClientEventAttr(HTML.ONLOAD_ATTR, ClientBehaviorEvents.LOAD),

Modified: myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/toggle/ToggleLinkClientBehaviorRendererTest.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/toggle/ToggleLinkClientBehaviorRendererTest.java?rev=1301241&r1=1301240&r2=1301241&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/toggle/ToggleLinkClientBehaviorRendererTest.java (original)
+++ myfaces/tomahawk/trunk/core20/src/test/java/org/apache/myfaces/custom/toggle/ToggleLinkClientBehaviorRendererTest.java Thu Mar 15 22:12:16 2012
@@ -21,14 +21,13 @@ package org.apache.myfaces.custom.toggle
 import javax.faces.component.UIComponent;
 import javax.faces.component.html.HtmlForm;
 
-import org.apache.myfaces.application.NavigationHandlerImpl;
 import org.apache.myfaces.component.behavior.AbstractClientBehaviorTestCase;
 import org.apache.myfaces.component.behavior.HtmlClientEventAttributesUtil;
 import org.apache.myfaces.component.behavior.HtmlRenderedClientEventAttr;
 import org.apache.myfaces.component.html.ext.HtmlInputText;
-import org.apache.myfaces.shared_impl.renderkit.ClientBehaviorEvents;
-import org.apache.myfaces.shared_impl.renderkit.html.HTML;
-import org.apache.myfaces.shared_impl.util.ArrayUtils;
+import org.apache.myfaces.shared_tomahawk.renderkit.ClientBehaviorEvents;
+import org.apache.myfaces.shared_tomahawk.renderkit.html.HTML;
+import org.apache.myfaces.shared_tomahawk.util.ArrayUtils;
 
 /**
  * @author Leonardo Uribe (latest modification by $Author: jankeesvanandel $)