Ver código fonte

a minor API extension.


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@373 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 17 anos atrás
pai
commit
9f548a4c38
1 arquivos alterados com 23 adições e 1 exclusões
  1. 23
    1
      src/main/javassist/ClassPool.java

+ 23
- 1
src/main/javassist/ClassPool.java Ver arquivo

@@ -585,12 +585,34 @@ public class ClassPool {
*/
public CtClass makeClass(InputStream classfile)
throws IOException, RuntimeException
{
return makeClass(classfile, true);
}

/**
* Creates a new class (or interface) from the given class file.
* If there already exists a class with the same name, the new class
* overwrites that previous class.
*
* <p>This method is used for creating a <code>CtClass</code> object
* directly from a class file. The qualified class name is obtained
* from the class file; you do not have to explicitly give the name.
*
* @param classfile class file.
* @param ifNotFrozen throws a RuntimeException if this parameter is true
* and there is a frozen class with the same name.
* @see javassist.ByteArrayClassPath
*/
public CtClass makeClass(InputStream classfile, boolean ifNotFrozen)
throws IOException, RuntimeException
{
classfile = new BufferedInputStream(classfile);
CtClass clazz = new CtClassType(classfile, this);
clazz.checkModify();
String classname = clazz.getName();
checkNotFrozen(classname);
if (ifNotFrozen)
checkNotFrozen(classname);

cacheCtClass(classname, clazz, true);
return clazz;
}

Carregando…
Cancelar
Salvar