< prev index next >

src/java.xml/share/classes/javax/xml/stream/events/NotationDeclaration.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2009, 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. Oracle designates this --- 1,7 ---- /* ! * 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 38,55 **** --- 38,58 ---- * @since 1.6 */ public interface NotationDeclaration extends XMLEvent { /** * The notation name. + * @return the name */ String getName(); /** * The notation's public identifier, or null if none was given. + * @return the public identifier */ String getPublicId(); /** * The notation's system identifier, or null if none was given. + * @return the system identifier */ String getSystemId(); }
< prev index next >