Lines Matching full:scene
119 AScene scene = new AScene();
121 IndexFileParser.parseFile(indexFileName, scene);
123 // annotations loaded from index file into scene, now insert them
128 insert(scene, className, true);
133 insert(scene, className, outputFileName, true);
153 * Inserts the annotations contained in <code> scene </code> into
157 * @param scene the scene containing the annotations to insert into a class
163 * particular element in both the scene and the class file. If true,
164 * then the one from the scene is used; else the the existing annotation
170 AScene scene, String fileName, boolean overwrite)
180 new ClassAnnotationSceneWriter(cr, scene, overwrite);
189 * Inserts the annotations contained in <code> scene </code> into
194 * annotations from <code> scene </code>.
196 * @param scene the scene containing the annotations to insert into a class
200 * particular element in both the scene and the class file. If true,
201 * then the one from the scene is used; else the the existing annotation
206 public static void insert(AScene scene, InputStream in,
211 new ClassAnnotationSceneWriter(cr, scene, overwrite);
219 * Inserts the annotations contained in <code> scene </code> into
225 * @param scene the scene containing the annotations to insert into a class
229 * particular element in both the scene and the class file. If true,
230 * then the one from the scene is used; else the the existing annotation
235 public static void insert(AScene scene,
240 new ClassAnnotationSceneWriter(cr, scene, overwrite);