< prev index next >

src/java.xml/share/classes/javax/xml/stream/events/Attribute.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,59 **** * @since 1.6 */ public interface Attribute extends XMLEvent { /** ! * Returns the QName for this attribute */ QName getName(); /** ! * Gets the normalized value of this attribute */ public String getValue(); /** * Gets the type of this attribute, default is ! * the String "CDATA" * @return the type as a String, default is "CDATA" */ public String getDTDType(); /** --- 38,61 ---- * @since 1.6 */ public interface Attribute extends XMLEvent { /** ! * Returns the QName for this attribute. ! * @return the QName of the attribute */ QName getName(); /** ! * Gets the normalized value of this attribute. ! * @return the normalized value of the attribute */ public String getValue(); /** * Gets the type of this attribute, default is ! * the String "CDATA". * @return the type as a String, default is "CDATA" */ public String getDTDType(); /**
< prev index next >