--- old/src/java.xml/share/classes/javax/xml/stream/events/Namespace.java 2020-08-18 00:44:40.833800590 +0000 +++ new/src/java.xml/share/classes/javax/xml/stream/events/Namespace.java 2020-08-18 00:44:40.534793016 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2020, 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 @@ -41,16 +41,19 @@ /** * Gets the prefix, returns "" if this is a default * namespace declaration. + * @return the prefix */ public String getPrefix(); /** * Gets the uri bound to the prefix of this namespace + * @return the {@code NamespaceURI} */ public String getNamespaceURI(); /** * returns true if this attribute declares the default namespace + * @return true if this is default namespace, false otherwise */ public boolean isDefaultNamespaceDeclaration(); }