Lines Matching refs:classname
45 public void onLoad(ClassPool _pool, String classname) in onLoad() argument
47 onLoadUpdatable(classname); in onLoad()
53 CtClass clazz = _pool.get(classname); in onLoad()
60 private void onLoadUpdatable(String classname) throws NotFoundException, in onLoadUpdatable() argument
65 int i = classname.lastIndexOf("$$"); in onLoadUpdatable()
69 String orgname = classname.substring(0, i); in onLoadUpdatable()
75 version = Integer.parseInt(classname.substring(i + 2)); in onLoadUpdatable()
78 throw new NotFoundException(classname, e); in onLoadUpdatable()
81 CtClass clazz = pool.getAndRename(orgname, classname); in onLoadUpdatable()
88 public void makeUpdatable(String classname) throws NotFoundException, in makeUpdatable() argument
94 CtClass c = pool.get(classname); in makeUpdatable()
95 updatableClassName = classname; in makeUpdatable()