Home | History | Annotate | Download | only in javassist

Lines Matching defs:packageName

32     protected String packageName;
38 * class name starts with the name specified by <code>packageName</code>.
39 * If <code>packageName</code> is "org.javassist." and a requested class is
49 * <p>If <code>packageName</code> is <code>null</code>, the URL is used
57 * @param packageName package name. It must end with "." (dot).
60 String directory, String packageName) {
64 this.packageName = packageName;
87 if (packageName == null || classname.startsWith(packageName)) {