Home | History | Annotate | Download | only in evolve

Lines Matching refs:classname

45     public void onLoad(ClassPool _pool, String classname)

47 onLoadUpdatable(classname);
53 CtClass clazz = _pool.get(classname);
60 private void onLoadUpdatable(String classname) throws NotFoundException,
63 // classname is <updatableClassName>$$<version>.
65 int i = classname.lastIndexOf("$$");
69 String orgname = classname.substring(0, i);
75 version = Integer.parseInt(classname.substring(i + 2));
78 throw new NotFoundException(classname, e);
81 CtClass clazz = pool.getAndRename(orgname, classname);
88 public void makeUpdatable(String classname) throws NotFoundException,
94 CtClass c = pool.get(classname);
95 updatableClassName = classname;