aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2004-04-14 15:52:55 +0000
committerchiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3>2004-04-14 15:52:55 +0000
commitf480c5d9122f26f32fa89f44ea7d606fd3df8557 (patch)
tree6946017c1886174a2bdd4ffb8c737f70f015b970
parent3f73777f2cdf408d47bd85417611635235bdd7ed (diff)
downloadjavassist-f480c5d9122f26f32fa89f44ea7d606fd3df8557.tar.gz
javassist-f480c5d9122f26f32fa89f44ea7d606fd3df8557.zip
Not needed anymore.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@85 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
-rw-r--r--src/main/javassist/AbsClassPool.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/main/javassist/AbsClassPool.java b/src/main/javassist/AbsClassPool.java
deleted file mode 100644
index 5425cab2..00000000
--- a/src/main/javassist/AbsClassPool.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Javassist, a Java-bytecode translator toolkit.
- * Copyright (C) 1999-2004 Shigeru Chiba. All Rights Reserved.
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. Alternatively, the contents of this file may be used under
- * the terms of the GNU Lesser General Public License Version 2.1 or later.
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- */
-
-package javassist;
-
-import java.io.DataOutputStream;
-import java.io.IOException;
-import java.net.URL;
-
-/**
- * Abstract root of ClassPool and ClassPoolTail.
- */
-abstract class AbsClassPool {
- public abstract String toString();
-
- public abstract void recordInvalidClassName(String name);
-
- abstract byte[] readSource(String classname)
- throws NotFoundException, IOException, CannotCompileException;
-
- abstract boolean write0(String classname, DataOutputStream out,
- boolean callback)
- throws NotFoundException, CannotCompileException, IOException;
-
- abstract URL find(String classname);
-
- public abstract ClassPath appendSystemPath();
- public abstract ClassPath insertClassPath(ClassPath cp);
- public abstract ClassPath appendClassPath(ClassPath cp);
- public abstract ClassPath insertClassPath(String pathname)
- throws NotFoundException;
- public abstract ClassPath appendClassPath(String pathname)
- throws NotFoundException;
- public abstract void removeClassPath(ClassPath cp);
-}