geirm 01/05/20 12:49:32
Modified: src/java/org/apache/velocity/test EventHandlingTestCase.java
src/java/org/apache/velocity/test/misc Test.java
Log:
update import statements for package move for event stuff
Revision Changes Path
1.2 +5 -5
jakarta-velocity/src/java/org/apache/velocity/test/EventHandlingTestCase.java
Index: EventHandlingTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/test/EventHandlingTestCase.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- EventHandlingTestCase.java 2001/05/17 14:04:08 1.1
+++ EventHandlingTestCase.java 2001/05/20 19:49:29 1.2
@@ -65,16 +65,16 @@
import org.apache.velocity.exception.ParseErrorException;
import org.apache.velocity.exception.MethodInvocationException;
-import org.apache.velocity.context.EventCartridge;
-import org.apache.velocity.context.ReferenceInsertionEventHandler;
-import org.apache.velocity.context.MethodExceptionEventHandler;
-import org.apache.velocity.context.NullSetEventHandler;
+import org.apache.velocity.app.event.EventCartridge;
+import org.apache.velocity.app.event.ReferenceInsertionEventHandler;
+import org.apache.velocity.app.event.MethodExceptionEventHandler;
+import org.apache.velocity.app.event.NullSetEventHandler;
/**
* Tests event handling
*
* @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
- * @version $Id: EventHandlingTestCase.java,v 1.1 2001/05/17 14:04:08 geirm Exp $
+ * @version $Id: EventHandlingTestCase.java,v 1.2 2001/05/20 19:49:29 geirm Exp $
*/
public class EventHandlingTestCase extends TestCase implements
ReferenceInsertionEventHandler,
NullSetEventHandler,
MethodExceptionEventHandler,
1.29 +6 -5
jakarta-velocity/src/java/org/apache/velocity/test/misc/Test.java
Index: Test.java
===================================================================
RCS file:
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/test/misc/Test.java,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- Test.java 2001/05/17 15:59:42 1.28
+++ Test.java 2001/05/20 19:49:31 1.29
@@ -82,10 +82,11 @@
import org.apache.velocity.runtime.Runtime;
import org.apache.velocity.test.provider.TestProvider;
-import org.apache.velocity.context.EventCartridge;
-import org.apache.velocity.context.ReferenceInsertionEventHandler;
-import org.apache.velocity.context.MethodExceptionEventHandler;
-import org.apache.velocity.context.NullSetEventHandler;
+import org.apache.velocity.app.event.EventCartridge;
+import org.apache.velocity.app.event.ReferenceInsertionEventHandler;
+import org.apache.velocity.app.event.MethodExceptionEventHandler;
+import org.apache.velocity.app.event.NullSetEventHandler;
+
import org.apache.velocity.context.Context;
/**
@@ -94,7 +95,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Geir Magnusson Jr.</a>
- * @version $Id: Test.java,v 1.28 2001/05/17 15:59:42 geirm Exp $
+ * @version $Id: Test.java,v 1.29 2001/05/20 19:49:31 geirm Exp $
*/
public class Test implements ReferenceInsertionEventHandler,
NullSetEventHandler,