test/tools/javac/processing/model/util/elements/TestGetPackageOf.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 24,33 **** --- 24,35 ---- /* * @test * @bug 6453386 * @summary Test Elements.getPackageOf * @author Joseph D. Darcy + * @library ../../../../lib + * @build JavacTestingAbstractProcessor * @build TestGetPackageOf * @compile -processor TestGetPackageOf -proc:only TestGetPackageOf.java */ import java.util.Set;
*** 41,54 **** import static javax.tools.StandardLocation.*; /** * Test basic workings of Elements.getPackageOf */ ! @SupportedAnnotationTypes("*") ! public class TestGetPackageOf extends AbstractProcessor { ! private Elements eltUtils; ! /** * Check expected behavior on classes and packages. */ public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) { --- 43,53 ---- import static javax.tools.StandardLocation.*; /** * Test basic workings of Elements.getPackageOf */ ! public class TestGetPackageOf extends JavacTestingAbstractProcessor { /** * Check expected behavior on classes and packages. */ public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
*** 67,81 **** if (!unnamedPkg.equals(pkg=eltUtils.getPackageOf(unnamedPkg) ) ) throw new RuntimeException("Unexpected package for unnamed pkg: " + pkg); } return true; } - - public SourceVersion getSupportedSourceVersion() { - return SourceVersion.latest(); - } - - public void init(ProcessingEnvironment processingEnv) { - super.init(processingEnv); - eltUtils = processingEnv.getElementUtils(); - } } --- 66,71 ----