--- old/src/share/classes/javax/lang/model/element/PackageElement.java 2011-01-27 23:08:26.000000000 -0800 +++ new/src/share/classes/javax/lang/model/element/PackageElement.java 2011-01-27 23:08:26.000000000 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2009, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2011, 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 @@ -46,6 +46,16 @@ * @jls3 6.7 Fully Qualified Names and Canonical Names */ Name getQualifiedName(); + + /** + * Returns the simple name of this package. For an unnamed + * package, an empty name is returned + * + * @return the simple name of this package, or an empty name if + * this is an unnamed package + */ + @Override + Name getSimpleName(); /** * Returns {@code true} is this is an unnamed package and {@code @@ -56,4 +66,13 @@ * @jls3 7.4.2 Unnamed Packages */ boolean isUnnamed(); + + /** + * Returns {@code null} since a package is not enclosed by another + * element. + * + * @return {@code null} + */ + @Override + Element getEnclosingElement(); }