jaxp/src/share/classes/org/w3c/dom/Attr.java
author tbell
Fri, 30 Oct 2009 09:06:38 -0700
changeset 4179 0800b2aa9c52
parent 6 7f561c08de6b
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
7f561c08de6b Initial load
duke
parents:
diff changeset
     1
/*
7f561c08de6b Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7f561c08de6b Initial load
duke
parents:
diff changeset
     3
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
7f561c08de6b Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
7f561c08de6b Initial load
duke
parents:
diff changeset
     6
 * published by the Free Software Foundation.  Sun designates this
7f561c08de6b Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
7f561c08de6b Initial load
duke
parents:
diff changeset
     8
 * by Sun in the LICENSE file that accompanied this code.
7f561c08de6b Initial load
duke
parents:
diff changeset
     9
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
7f561c08de6b Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7f561c08de6b Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7f561c08de6b Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
7f561c08de6b Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
7f561c08de6b Initial load
duke
parents:
diff changeset
    15
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
7f561c08de6b Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
7f561c08de6b Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7f561c08de6b Initial load
duke
parents:
diff changeset
    19
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    20
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
7f561c08de6b Initial load
duke
parents:
diff changeset
    21
 * CA 95054 USA or visit www.sun.com if you need additional information or
7f561c08de6b Initial load
duke
parents:
diff changeset
    22
 * have any questions.
7f561c08de6b Initial load
duke
parents:
diff changeset
    23
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    24
7f561c08de6b Initial load
duke
parents:
diff changeset
    25
/*
7f561c08de6b Initial load
duke
parents:
diff changeset
    26
 * This file is available under and governed by the GNU General Public
7f561c08de6b Initial load
duke
parents:
diff changeset
    27
 * License version 2 only, as published by the Free Software Foundation.
7f561c08de6b Initial load
duke
parents:
diff changeset
    28
 * However, the following notice accompanied the original version of this
7f561c08de6b Initial load
duke
parents:
diff changeset
    29
 * file and, per its terms, should not be removed:
7f561c08de6b Initial load
duke
parents:
diff changeset
    30
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    31
 * Copyright (c) 2004 World Wide Web Consortium,
7f561c08de6b Initial load
duke
parents:
diff changeset
    32
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    33
 * (Massachusetts Institute of Technology, European Research Consortium for
7f561c08de6b Initial load
duke
parents:
diff changeset
    34
 * Informatics and Mathematics, Keio University). All Rights Reserved. This
7f561c08de6b Initial load
duke
parents:
diff changeset
    35
 * work is distributed under the W3C(r) Software License [1] in the hope that
7f561c08de6b Initial load
duke
parents:
diff changeset
    36
 * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
7f561c08de6b Initial load
duke
parents:
diff changeset
    37
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7f561c08de6b Initial load
duke
parents:
diff changeset
    38
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    39
 * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
7f561c08de6b Initial load
duke
parents:
diff changeset
    40
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    41
7f561c08de6b Initial load
duke
parents:
diff changeset
    42
package org.w3c.dom;
7f561c08de6b Initial load
duke
parents:
diff changeset
    43
7f561c08de6b Initial load
duke
parents:
diff changeset
    44
/**
7f561c08de6b Initial load
duke
parents:
diff changeset
    45
 * The <code>Attr</code> interface represents an attribute in an
7f561c08de6b Initial load
duke
parents:
diff changeset
    46
 * <code>Element</code> object. Typically the allowable values for the
7f561c08de6b Initial load
duke
parents:
diff changeset
    47
 * attribute are defined in a schema associated with the document.
7f561c08de6b Initial load
duke
parents:
diff changeset
    48
 * <p><code>Attr</code> objects inherit the <code>Node</code> interface, but
7f561c08de6b Initial load
duke
parents:
diff changeset
    49
 * since they are not actually child nodes of the element they describe, the
7f561c08de6b Initial load
duke
parents:
diff changeset
    50
 * DOM does not consider them part of the document tree. Thus, the
7f561c08de6b Initial load
duke
parents:
diff changeset
    51
 * <code>Node</code> attributes <code>parentNode</code>,
7f561c08de6b Initial load
duke
parents:
diff changeset
    52
 * <code>previousSibling</code>, and <code>nextSibling</code> have a
7f561c08de6b Initial load
duke
parents:
diff changeset
    53
 * <code>null</code> value for <code>Attr</code> objects. The DOM takes the
7f561c08de6b Initial load
duke
parents:
diff changeset
    54
 * view that attributes are properties of elements rather than having a
7f561c08de6b Initial load
duke
parents:
diff changeset
    55
 * separate identity from the elements they are associated with; this should
7f561c08de6b Initial load
duke
parents:
diff changeset
    56
 * make it more efficient to implement such features as default attributes
7f561c08de6b Initial load
duke
parents:
diff changeset
    57
 * associated with all elements of a given type. Furthermore,
7f561c08de6b Initial load
duke
parents:
diff changeset
    58
 * <code>Attr</code> nodes may not be immediate children of a
7f561c08de6b Initial load
duke
parents:
diff changeset
    59
 * <code>DocumentFragment</code>. However, they can be associated with
7f561c08de6b Initial load
duke
parents:
diff changeset
    60
 * <code>Element</code> nodes contained within a
7f561c08de6b Initial load
duke
parents:
diff changeset
    61
 * <code>DocumentFragment</code>. In short, users and implementors of the
7f561c08de6b Initial load
duke
parents:
diff changeset
    62
 * DOM need to be aware that <code>Attr</code> nodes have some things in
7f561c08de6b Initial load
duke
parents:
diff changeset
    63
 * common with other objects inheriting the <code>Node</code> interface, but
7f561c08de6b Initial load
duke
parents:
diff changeset
    64
 * they also are quite distinct.
7f561c08de6b Initial load
duke
parents:
diff changeset
    65
 * <p>The attribute's effective value is determined as follows: if this
7f561c08de6b Initial load
duke
parents:
diff changeset
    66
 * attribute has been explicitly assigned any value, that value is the
7f561c08de6b Initial load
duke
parents:
diff changeset
    67
 * attribute's effective value; otherwise, if there is a declaration for
7f561c08de6b Initial load
duke
parents:
diff changeset
    68
 * this attribute, and that declaration includes a default value, then that
7f561c08de6b Initial load
duke
parents:
diff changeset
    69
 * default value is the attribute's effective value; otherwise, the
7f561c08de6b Initial load
duke
parents:
diff changeset
    70
 * attribute does not exist on this element in the structure model until it
7f561c08de6b Initial load
duke
parents:
diff changeset
    71
 * has been explicitly added. Note that the <code>Node.nodeValue</code>
7f561c08de6b Initial load
duke
parents:
diff changeset
    72
 * attribute on the <code>Attr</code> instance can also be used to retrieve
7f561c08de6b Initial load
duke
parents:
diff changeset
    73
 * the string version of the attribute's value(s).
7f561c08de6b Initial load
duke
parents:
diff changeset
    74
 * <p> If the attribute was not explicitly given a value in the instance
7f561c08de6b Initial load
duke
parents:
diff changeset
    75
 * document but has a default value provided by the schema associated with
7f561c08de6b Initial load
duke
parents:
diff changeset
    76
 * the document, an attribute node will be created with
7f561c08de6b Initial load
duke
parents:
diff changeset
    77
 * <code>specified</code> set to <code>false</code>. Removing attribute
7f561c08de6b Initial load
duke
parents:
diff changeset
    78
 * nodes for which a default value is defined in the schema generates a new
7f561c08de6b Initial load
duke
parents:
diff changeset
    79
 * attribute node with the default value and <code>specified</code> set to
7f561c08de6b Initial load
duke
parents:
diff changeset
    80
 * <code>false</code>. If validation occurred while invoking
7f561c08de6b Initial load
duke
parents:
diff changeset
    81
 * <code>Document.normalizeDocument()</code>, attribute nodes with
7f561c08de6b Initial load
duke
parents:
diff changeset
    82
 * <code>specified</code> equals to <code>false</code> are recomputed
7f561c08de6b Initial load
duke
parents:
diff changeset
    83
 * according to the default attribute values provided by the schema. If no
7f561c08de6b Initial load
duke
parents:
diff changeset
    84
 * default value is associate with this attribute in the schema, the
7f561c08de6b Initial load
duke
parents:
diff changeset
    85
 * attribute node is discarded.
7f561c08de6b Initial load
duke
parents:
diff changeset
    86
 * <p>In XML, where the value of an attribute can contain entity references,
7f561c08de6b Initial load
duke
parents:
diff changeset
    87
 * the child nodes of the <code>Attr</code> node may be either
7f561c08de6b Initial load
duke
parents:
diff changeset
    88
 * <code>Text</code> or <code>EntityReference</code> nodes (when these are
7f561c08de6b Initial load
duke
parents:
diff changeset
    89
 * in use; see the description of <code>EntityReference</code> for
7f561c08de6b Initial load
duke
parents:
diff changeset
    90
 * discussion).
7f561c08de6b Initial load
duke
parents:
diff changeset
    91
 * <p>The DOM Core represents all attribute values as simple strings, even if
7f561c08de6b Initial load
duke
parents:
diff changeset
    92
 * the DTD or schema associated with the document declares them of some
7f561c08de6b Initial load
duke
parents:
diff changeset
    93
 * specific type such as tokenized.
7f561c08de6b Initial load
duke
parents:
diff changeset
    94
 * <p>The way attribute value normalization is performed by the DOM
7f561c08de6b Initial load
duke
parents:
diff changeset
    95
 * implementation depends on how much the implementation knows about the
7f561c08de6b Initial load
duke
parents:
diff changeset
    96
 * schema in use. Typically, the <code>value</code> and
7f561c08de6b Initial load
duke
parents:
diff changeset
    97
 * <code>nodeValue</code> attributes of an <code>Attr</code> node initially
7f561c08de6b Initial load
duke
parents:
diff changeset
    98
 * returns the normalized value given by the parser. It is also the case
7f561c08de6b Initial load
duke
parents:
diff changeset
    99
 * after <code>Document.normalizeDocument()</code> is called (assuming the
7f561c08de6b Initial load
duke
parents:
diff changeset
   100
 * right options have been set). But this may not be the case after
7f561c08de6b Initial load
duke
parents:
diff changeset
   101
 * mutation, independently of whether the mutation is performed by setting
7f561c08de6b Initial load
duke
parents:
diff changeset
   102
 * the string value directly or by changing the <code>Attr</code> child
7f561c08de6b Initial load
duke
parents:
diff changeset
   103
 * nodes. In particular, this is true when <a href='http://www.w3.org/TR/2004/REC-xml-20040204#dt-charref'>character
7f561c08de6b Initial load
duke
parents:
diff changeset
   104
 * references</a> are involved, given that they are not represented in the DOM and they
7f561c08de6b Initial load
duke
parents:
diff changeset
   105
 * impact attribute value normalization. On the other hand, if the
7f561c08de6b Initial load
duke
parents:
diff changeset
   106
 * implementation knows about the schema in use when the attribute value is
7f561c08de6b Initial load
duke
parents:
diff changeset
   107
 * changed, and it is of a different type than CDATA, it may normalize it
7f561c08de6b Initial load
duke
parents:
diff changeset
   108
 * again at that time. This is especially true of specialized DOM
7f561c08de6b Initial load
duke
parents:
diff changeset
   109
 * implementations, such as SVG DOM implementations, which store attribute
7f561c08de6b Initial load
duke
parents:
diff changeset
   110
 * values in an internal form different from a string.
7f561c08de6b Initial load
duke
parents:
diff changeset
   111
 * <p>The following table gives some examples of the relations between the
7f561c08de6b Initial load
duke
parents:
diff changeset
   112
 * attribute value in the original document (parsed attribute), the value as
7f561c08de6b Initial load
duke
parents:
diff changeset
   113
 * exposed in the DOM, and the serialization of the value:
7f561c08de6b Initial load
duke
parents:
diff changeset
   114
 * <table border='1' cellpadding='3'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   115
 * <tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   116
 * <th>Examples</th>
7f561c08de6b Initial load
duke
parents:
diff changeset
   117
 * <th>Parsed
7f561c08de6b Initial load
duke
parents:
diff changeset
   118
 * attribute value</th>
7f561c08de6b Initial load
duke
parents:
diff changeset
   119
 * <th>Initial <code>Attr.value</code></th>
7f561c08de6b Initial load
duke
parents:
diff changeset
   120
 * <th>Serialized attribute value</th>
7f561c08de6b Initial load
duke
parents:
diff changeset
   121
 * </tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   122
 * <tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   123
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   124
 * Character reference</td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   125
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   126
 * <pre>"x&amp;#178;=5"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   127
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   128
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   129
 * <pre>"x\u00b2=5"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   130
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   131
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   132
 * <pre>"x&amp;#178;=5"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   133
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   134
 * </tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   135
 * <tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   136
 * <td valign='top' rowspan='1' colspan='1'>Built-in
7f561c08de6b Initial load
duke
parents:
diff changeset
   137
 * character entity</td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   138
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   139
 * <pre>"y&amp;lt;6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   140
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   141
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   142
 * <pre>"y&lt;6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   143
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   144
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   145
 * <pre>"y&amp;lt;6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   146
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   147
 * </tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   148
 * <tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   149
 * <td valign='top' rowspan='1' colspan='1'>Literal newline between</td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   150
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   151
 * <pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   152
 * "x=5&amp;#10;y=6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   153
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   154
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   155
 * <pre>"x=5 y=6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   156
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   157
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   158
 * <pre>"x=5&amp;#10;y=6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   159
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   160
 * </tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   161
 * <tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   162
 * <td valign='top' rowspan='1' colspan='1'>Normalized newline between</td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   163
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   164
 * <pre>"x=5
7f561c08de6b Initial load
duke
parents:
diff changeset
   165
 * y=6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   166
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   167
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   168
 * <pre>"x=5 y=6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   169
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   170
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   171
 * <pre>"x=5 y=6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   172
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   173
 * </tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   174
 * <tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   175
 * <td valign='top' rowspan='1' colspan='1'>Entity <code>e</code> with literal newline</td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   176
 * <td valign='top' rowspan='1' colspan='1'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   177
 * <pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   178
 * &lt;!ENTITY e '...&amp;#10;...'&gt; [...]&gt; "x=5&amp;e;y=6"</pre>
7f561c08de6b Initial load
duke
parents:
diff changeset
   179
 * </td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   180
 * <td valign='top' rowspan='1' colspan='1'><em>Dependent on Implementation and Load Options</em></td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   181
 * <td valign='top' rowspan='1' colspan='1'><em>Dependent on Implementation and Load/Save Options</em></td>
7f561c08de6b Initial load
duke
parents:
diff changeset
   182
 * </tr>
7f561c08de6b Initial load
duke
parents:
diff changeset
   183
 * </table>
7f561c08de6b Initial load
duke
parents:
diff changeset
   184
 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
7f561c08de6b Initial load
duke
parents:
diff changeset
   185
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
   186
public interface Attr extends Node {
7f561c08de6b Initial load
duke
parents:
diff changeset
   187
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   188
     * Returns the name of this attribute. If <code>Node.localName</code> is
7f561c08de6b Initial load
duke
parents:
diff changeset
   189
     * different from <code>null</code>, this attribute is a qualified name.
7f561c08de6b Initial load
duke
parents:
diff changeset
   190
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   191
    public String getName();
7f561c08de6b Initial load
duke
parents:
diff changeset
   192
7f561c08de6b Initial load
duke
parents:
diff changeset
   193
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   194
     *  <code>True</code> if this attribute was explicitly given a value in
7f561c08de6b Initial load
duke
parents:
diff changeset
   195
     * the instance document, <code>false</code> otherwise. If the
7f561c08de6b Initial load
duke
parents:
diff changeset
   196
     * application changed the value of this attribute node (even if it ends
7f561c08de6b Initial load
duke
parents:
diff changeset
   197
     * up having the same value as the default value) then it is set to
7f561c08de6b Initial load
duke
parents:
diff changeset
   198
     * <code>true</code>. The implementation may handle attributes with
7f561c08de6b Initial load
duke
parents:
diff changeset
   199
     * default values from other schemas similarly but applications should
7f561c08de6b Initial load
duke
parents:
diff changeset
   200
     * use <code>Document.normalizeDocument()</code> to guarantee this
7f561c08de6b Initial load
duke
parents:
diff changeset
   201
     * information is up-to-date.
7f561c08de6b Initial load
duke
parents:
diff changeset
   202
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   203
    public boolean getSpecified();
7f561c08de6b Initial load
duke
parents:
diff changeset
   204
7f561c08de6b Initial load
duke
parents:
diff changeset
   205
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   206
     * On retrieval, the value of the attribute is returned as a string.
7f561c08de6b Initial load
duke
parents:
diff changeset
   207
     * Character and general entity references are replaced with their
7f561c08de6b Initial load
duke
parents:
diff changeset
   208
     * values. See also the method <code>getAttribute</code> on the
7f561c08de6b Initial load
duke
parents:
diff changeset
   209
     * <code>Element</code> interface.
7f561c08de6b Initial load
duke
parents:
diff changeset
   210
     * <br>On setting, this creates a <code>Text</code> node with the unparsed
7f561c08de6b Initial load
duke
parents:
diff changeset
   211
     * contents of the string, i.e. any characters that an XML processor
7f561c08de6b Initial load
duke
parents:
diff changeset
   212
     * would recognize as markup are instead treated as literal text. See
7f561c08de6b Initial load
duke
parents:
diff changeset
   213
     * also the method <code>Element.setAttribute()</code>.
7f561c08de6b Initial load
duke
parents:
diff changeset
   214
     * <br> Some specialized implementations, such as some [<a href='http://www.w3.org/TR/2003/REC-SVG11-20030114/'>SVG 1.1</a>]
7f561c08de6b Initial load
duke
parents:
diff changeset
   215
     * implementations, may do normalization automatically, even after
7f561c08de6b Initial load
duke
parents:
diff changeset
   216
     * mutation; in such case, the value on retrieval may differ from the
7f561c08de6b Initial load
duke
parents:
diff changeset
   217
     * value on setting.
7f561c08de6b Initial load
duke
parents:
diff changeset
   218
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   219
    public String getValue();
7f561c08de6b Initial load
duke
parents:
diff changeset
   220
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   221
     * On retrieval, the value of the attribute is returned as a string.
7f561c08de6b Initial load
duke
parents:
diff changeset
   222
     * Character and general entity references are replaced with their
7f561c08de6b Initial load
duke
parents:
diff changeset
   223
     * values. See also the method <code>getAttribute</code> on the
7f561c08de6b Initial load
duke
parents:
diff changeset
   224
     * <code>Element</code> interface.
7f561c08de6b Initial load
duke
parents:
diff changeset
   225
     * <br>On setting, this creates a <code>Text</code> node with the unparsed
7f561c08de6b Initial load
duke
parents:
diff changeset
   226
     * contents of the string, i.e. any characters that an XML processor
7f561c08de6b Initial load
duke
parents:
diff changeset
   227
     * would recognize as markup are instead treated as literal text. See
7f561c08de6b Initial load
duke
parents:
diff changeset
   228
     * also the method <code>Element.setAttribute()</code>.
7f561c08de6b Initial load
duke
parents:
diff changeset
   229
     * <br> Some specialized implementations, such as some [<a href='http://www.w3.org/TR/2003/REC-SVG11-20030114/'>SVG 1.1</a>]
7f561c08de6b Initial load
duke
parents:
diff changeset
   230
     * implementations, may do normalization automatically, even after
7f561c08de6b Initial load
duke
parents:
diff changeset
   231
     * mutation; in such case, the value on retrieval may differ from the
7f561c08de6b Initial load
duke
parents:
diff changeset
   232
     * value on setting.
7f561c08de6b Initial load
duke
parents:
diff changeset
   233
     * @exception DOMException
7f561c08de6b Initial load
duke
parents:
diff changeset
   234
     *   NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
7f561c08de6b Initial load
duke
parents:
diff changeset
   235
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   236
    public void setValue(String value)
7f561c08de6b Initial load
duke
parents:
diff changeset
   237
                            throws DOMException;
7f561c08de6b Initial load
duke
parents:
diff changeset
   238
7f561c08de6b Initial load
duke
parents:
diff changeset
   239
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   240
     * The <code>Element</code> node this attribute is attached to or
7f561c08de6b Initial load
duke
parents:
diff changeset
   241
     * <code>null</code> if this attribute is not in use.
7f561c08de6b Initial load
duke
parents:
diff changeset
   242
     * @since DOM Level 2
7f561c08de6b Initial load
duke
parents:
diff changeset
   243
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   244
    public Element getOwnerElement();
7f561c08de6b Initial load
duke
parents:
diff changeset
   245
7f561c08de6b Initial load
duke
parents:
diff changeset
   246
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   247
     *  The type information associated with this attribute. While the type
7f561c08de6b Initial load
duke
parents:
diff changeset
   248
     * information contained in this attribute is guarantee to be correct
7f561c08de6b Initial load
duke
parents:
diff changeset
   249
     * after loading the document or invoking
7f561c08de6b Initial load
duke
parents:
diff changeset
   250
     * <code>Document.normalizeDocument()</code>, <code>schemaTypeInfo</code>
7f561c08de6b Initial load
duke
parents:
diff changeset
   251
     *  may not be reliable if the node was moved.
7f561c08de6b Initial load
duke
parents:
diff changeset
   252
     * @since DOM Level 3
7f561c08de6b Initial load
duke
parents:
diff changeset
   253
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   254
    public TypeInfo getSchemaTypeInfo();
7f561c08de6b Initial load
duke
parents:
diff changeset
   255
7f561c08de6b Initial load
duke
parents:
diff changeset
   256
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   257
     *  Returns whether this attribute is known to be of type ID (i.e. to
7f561c08de6b Initial load
duke
parents:
diff changeset
   258
     * contain an identifier for its owner element) or not. When it is and
7f561c08de6b Initial load
duke
parents:
diff changeset
   259
     * its value is unique, the <code>ownerElement</code> of this attribute
7f561c08de6b Initial load
duke
parents:
diff changeset
   260
     * can be retrieved using the method <code>Document.getElementById</code>
7f561c08de6b Initial load
duke
parents:
diff changeset
   261
     * . The implementation could use several ways to determine if an
7f561c08de6b Initial load
duke
parents:
diff changeset
   262
     * attribute node is known to contain an identifier:
7f561c08de6b Initial load
duke
parents:
diff changeset
   263
     * <ul>
7f561c08de6b Initial load
duke
parents:
diff changeset
   264
     * <li> If validation
7f561c08de6b Initial load
duke
parents:
diff changeset
   265
     * occurred using an XML Schema [<a href='http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/'>XML Schema Part 1</a>]
7f561c08de6b Initial load
duke
parents:
diff changeset
   266
     *  while loading the document or while invoking
7f561c08de6b Initial load
duke
parents:
diff changeset
   267
     * <code>Document.normalizeDocument()</code>, the post-schema-validation
7f561c08de6b Initial load
duke
parents:
diff changeset
   268
     * infoset contributions (PSVI contributions) values are used to
7f561c08de6b Initial load
duke
parents:
diff changeset
   269
     * determine if this attribute is a schema-determined ID attribute using
7f561c08de6b Initial load
duke
parents:
diff changeset
   270
     * the <a href='http://www.w3.org/TR/2003/REC-xptr-framework-20030325/#term-sdi'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   271
     * schema-determined ID</a> definition in [<a href='http://www.w3.org/TR/2003/REC-xptr-framework-20030325/'>XPointer</a>]
7f561c08de6b Initial load
duke
parents:
diff changeset
   272
     * .
7f561c08de6b Initial load
duke
parents:
diff changeset
   273
     * </li>
7f561c08de6b Initial load
duke
parents:
diff changeset
   274
     * <li> If validation occurred using a DTD while loading the document or
7f561c08de6b Initial load
duke
parents:
diff changeset
   275
     * while invoking <code>Document.normalizeDocument()</code>, the infoset <b>[type definition]</b> value is used to determine if this attribute is a DTD-determined ID
7f561c08de6b Initial load
duke
parents:
diff changeset
   276
     * attribute using the <a href='http://www.w3.org/TR/2003/REC-xptr-framework-20030325/#term-ddi'>
7f561c08de6b Initial load
duke
parents:
diff changeset
   277
     * DTD-determined ID</a> definition in [<a href='http://www.w3.org/TR/2003/REC-xptr-framework-20030325/'>XPointer</a>]
7f561c08de6b Initial load
duke
parents:
diff changeset
   278
     * .
7f561c08de6b Initial load
duke
parents:
diff changeset
   279
     * </li>
7f561c08de6b Initial load
duke
parents:
diff changeset
   280
     * <li> from the use of the methods <code>Element.setIdAttribute()</code>,
7f561c08de6b Initial load
duke
parents:
diff changeset
   281
     * <code>Element.setIdAttributeNS()</code>, or
7f561c08de6b Initial load
duke
parents:
diff changeset
   282
     * <code>Element.setIdAttributeNode()</code>, i.e. it is an
7f561c08de6b Initial load
duke
parents:
diff changeset
   283
     * user-determined ID attribute;
7f561c08de6b Initial load
duke
parents:
diff changeset
   284
     * <p ><b>Note:</b>  XPointer framework (see section 3.2 in [<a href='http://www.w3.org/TR/2003/REC-xptr-framework-20030325/'>XPointer</a>]
7f561c08de6b Initial load
duke
parents:
diff changeset
   285
     * ) consider the DOM user-determined ID attribute as being part of the
7f561c08de6b Initial load
duke
parents:
diff changeset
   286
     * XPointer externally-determined ID definition.
7f561c08de6b Initial load
duke
parents:
diff changeset
   287
     * </li>
7f561c08de6b Initial load
duke
parents:
diff changeset
   288
     * <li> using mechanisms that
7f561c08de6b Initial load
duke
parents:
diff changeset
   289
     * are outside the scope of this specification, it is then an
7f561c08de6b Initial load
duke
parents:
diff changeset
   290
     * externally-determined ID attribute. This includes using schema
7f561c08de6b Initial load
duke
parents:
diff changeset
   291
     * languages different from XML schema and DTD.
7f561c08de6b Initial load
duke
parents:
diff changeset
   292
     * </li>
7f561c08de6b Initial load
duke
parents:
diff changeset
   293
     * </ul>
7f561c08de6b Initial load
duke
parents:
diff changeset
   294
     * <br> If validation occurred while invoking
7f561c08de6b Initial load
duke
parents:
diff changeset
   295
     * <code>Document.normalizeDocument()</code>, all user-determined ID
7f561c08de6b Initial load
duke
parents:
diff changeset
   296
     * attributes are reset and all attribute nodes ID information are then
7f561c08de6b Initial load
duke
parents:
diff changeset
   297
     * reevaluated in accordance to the schema used. As a consequence, if
7f561c08de6b Initial load
duke
parents:
diff changeset
   298
     * the <code>Attr.schemaTypeInfo</code> attribute contains an ID type,
7f561c08de6b Initial load
duke
parents:
diff changeset
   299
     * <code>isId</code> will always return true.
7f561c08de6b Initial load
duke
parents:
diff changeset
   300
     * @since DOM Level 3
7f561c08de6b Initial load
duke
parents:
diff changeset
   301
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   302
    public boolean isId();
7f561c08de6b Initial load
duke
parents:
diff changeset
   303
7f561c08de6b Initial load
duke
parents:
diff changeset
   304
}