Home | History | Annotate | Download | only in classfile

Lines Matching full:scene

111       AScene scene = new AScene();
114 read(scene, className);
116 readFromClass(scene, className);
120 IndexFileWriter.write(scene, outputFile);
157 * and inserts them into <code> scene </code>.
162 * @param scene the scene into which the annotations should be inserted
168 public static void read(AScene scene, String fileName)
170 read(scene, new FileInputStream(fileName));
176 * and inserts them into <code> scene </code>.
178 * @param scene the scene into which the annotations should be inserted
182 public static void readFromClass(AScene scene, String className)
184 read(scene, new ClassReader(className));
189 * and inserts them into <code> scene </code>.
191 * @param scene the scene into which the annotations should be inserted
196 public static void read(AScene scene, InputStream in)
198 read(scene, new ClassReader(in));
201 public static void read(AScene scene, ClassReader cr) {
203 new ClassAnnotationSceneReader(cr, scene, ignore_bridge_methods);