Home | History | Annotate | Download | only in classfile

Lines Matching full:scene

133    * Writes out scene to filename as an index file.
136 * @param scene the scene to write out
138 private void writeScene(String filename, AScene scene) {
140 IndexFileWriter.write(scene, filename);
149 * Reads in the annotations from filename, an index file, into scene.
152 * @param scene the scene to write out to
154 private void readScene(String filename, AScene scene) {
156 IndexFileParser.parseFile(filename, scene);
166 * from scene, and writes out the result into the same file.
169 * @param scene the scene that contains annotations to be inserted
173 AScene scene, boolean overwrite) {
174 writeClass(filename, filename, scene, overwrite);
183 * @param scene the scene that contains annotations to be inserted
189 AScene scene,
193 scene,
207 * into scene.
210 * @param scene the scene to write to
213 AScene scene) {
215 ClassFileReader.read(scene, filename);
224 * Creates scene from the annotations in the given index file.
226 * @param indexFile the index file to create a scene from
227 * @return the scene created from the given index file
230 AScene scene =
232 readScene(indexFile, scene);
233 return scene;
290 AScene scene = new AScene();
292 // read in annotations from index file to scene
293 readScene(indexFileName, scene);
295 // read in class from base, merge annotations from scene and
297 writeClass(base, generated, scene, true);
332 String fname2 = className+"-via-classfile-scene.txt";
335 fail(String.format("For annotations read from %s :%n After writing to class file and re-reading, result differed.%n Scene read from index file is in %s .%n Scene generated from class file is in %s .%n Also consider running javap -v on %s .%n", indexFileName, fname1, fname2, tempFile));