diff options
Diffstat (limited to 'loadtime/src/test/java/org/aspectj/bea/jvm')
-rw-r--r-- | loadtime/src/test/java/org/aspectj/bea/jvm/ClassLibraryImpl.java | 29 | ||||
-rw-r--r-- | loadtime/src/test/java/org/aspectj/bea/jvm/JVMImpl.java | 24 |
2 files changed, 0 insertions, 53 deletions
diff --git a/loadtime/src/test/java/org/aspectj/bea/jvm/ClassLibraryImpl.java b/loadtime/src/test/java/org/aspectj/bea/jvm/ClassLibraryImpl.java deleted file mode 100644 index 8b4c58446..000000000 --- a/loadtime/src/test/java/org/aspectj/bea/jvm/ClassLibraryImpl.java +++ /dev/null @@ -1,29 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2006 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Matthew Webster - initial implementation - *******************************************************************************/ -package org.aspectj.bea.jvm; - -import com.bea.jvm.ClassLibrary; -import com.bea.jvm.ClassPreProcessor; -import com.bea.jvm.NotAvailableException; - -public class ClassLibraryImpl implements ClassLibrary { - - private ClassPreProcessor preProcessor; - - public ClassPreProcessor getClassPreProcessor() throws NotAvailableException { - return preProcessor; - } - - public void setClassPreProcessor(ClassPreProcessor classPreProcessor) { - this.preProcessor = classPreProcessor; - } - -} diff --git a/loadtime/src/test/java/org/aspectj/bea/jvm/JVMImpl.java b/loadtime/src/test/java/org/aspectj/bea/jvm/JVMImpl.java deleted file mode 100644 index caae32e6f..000000000 --- a/loadtime/src/test/java/org/aspectj/bea/jvm/JVMImpl.java +++ /dev/null @@ -1,24 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2006 IBM Corporation and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * Matthew Webster - initial implementation - *******************************************************************************/ -package org.aspectj.bea.jvm; - -import com.bea.jvm.ClassLibrary; -import com.bea.jvm.JVM; - -public class JVMImpl implements JVM { - - private ClassLibrary libarary = new ClassLibraryImpl(); - - public ClassLibrary getClassLibrary() { - return libarary; - } - -} |