Home | History | Annotate | Download | only in io

Lines Matching full:scene

28  * the annotations to an {@link AScene}, using the scene's
30 * If the scene's {@link AnnotationFactory} announces that it does not want an
32 * from the javap output are merged into the scene; it is an error if both the
33 * scene and the javap output contain annotations of the same type on the same
48 private final AScene scene;
382 parseClass(scene.packages.vivify(pp));
384 parseClass(scene.classes.vivify(className));
392 private JavapParser(Reader in, AScene scene) {
395 this.scene = scene;
399 * Transfers annotations from <code>in</code> to <code>scene</code>.
401 public static void parse(Reader in, AScene scene) throws IOException, ParseException {
402 new JavapParser(in, scene).parse();
405 public static void parse(String filename, AScene scene) throws IOException, FileIOException {
408 parse(lnr, scene);