Moved parse tree allocation visitor to jem where it belongs.
diff --git a/plugins/org.eclipse.jem/.project b/plugins/org.eclipse.jem/.project index f12b12c..050e90e 100644 --- a/plugins/org.eclipse.jem/.project +++ b/plugins/org.eclipse.jem/.project
@@ -6,6 +6,7 @@ <project>com.ibm.wtp.common.util</project> <project>org.eclipse.core.runtime.compatibility</project> <project>org.eclipse.emf.ecore.xmi</project> + <project>org.eclipse.jem.proxy</project> <project>org.eclipse.osgi</project> </projects> <buildSpec>
diff --git a/plugins/org.eclipse.jem.workbench/workbench/org/eclipse/jem/workbench/utility/ParseTreeAllocationInstantiationVisitor.java b/plugins/org.eclipse.jem/javainst/org/eclipse/jem/internal/instantiation/base/ParseTreeAllocationInstantiationVisitor.java similarity index 98% rename from plugins/org.eclipse.jem.workbench/workbench/org/eclipse/jem/workbench/utility/ParseTreeAllocationInstantiationVisitor.java rename to plugins/org.eclipse.jem/javainst/org/eclipse/jem/internal/instantiation/base/ParseTreeAllocationInstantiationVisitor.java index 6d097bd..32a42da 100644 --- a/plugins/org.eclipse.jem.workbench/workbench/org/eclipse/jem/workbench/utility/ParseTreeAllocationInstantiationVisitor.java +++ b/plugins/org.eclipse.jem/javainst/org/eclipse/jem/internal/instantiation/base/ParseTreeAllocationInstantiationVisitor.java
@@ -10,9 +10,9 @@ *******************************************************************************/ /* * $RCSfile: ParseTreeAllocationInstantiationVisitor.java,v $ - * $Revision: 1.4 $ $Date: 2004/02/06 20:46:11 $ + * $Revision: 1.1 $ $Date: 2004/03/07 18:34:16 $ */ -package org.eclipse.jem.workbench.utility; +package org.eclipse.jem.internal.instantiation.base; import java.util.List; @@ -26,9 +26,6 @@ * This is the standard parse visitor for instantiating a bean proxy from a java parse tree allocation. * It can be reused, but is not thread-safe. * - * TODO Temporary here until we get logger moved to wtp.common, then remove org.eclipse.jem prereq from proxy and - * add optional prereq from jem to proxy. - * * @since 1.0.0 */ public class ParseTreeAllocationInstantiationVisitor extends ParseVisitor {
diff --git a/plugins/org.eclipse.jem/plugin.xml b/plugins/org.eclipse.jem/plugin.xml index 8b18141..282fe52 100644 --- a/plugins/org.eclipse.jem/plugin.xml +++ b/plugins/org.eclipse.jem/plugin.xml
@@ -20,6 +20,7 @@ <import plugin="org.eclipse.emf.ecore.xmi"/> <import plugin="org.eclipse.osgi"/> <import plugin="com.ibm.wtp.common.util"/> + <import plugin="org.eclipse.jem.proxy" optional="true"/> </requires>