Lines Matching refs:localName

65  *             <th><code>writeAttribute(namespaceURI, localName, value)</code></th>
69 * prefix:localName="value"&nbsp;<sup>[1]</sup>
73 * xmlns:{generated}="namespaceURI" {generated}:localName="value"
78 * prefix:localName="value"&nbsp;<sup>[1]</sup>
87 * <th><code>writeAttribute(prefix, namespaceURI, localName, value)</code></th>
92 * prefix:localName="value"&nbsp;<sup>[1]</sup><br />
95 * xmlns:{generated}="namespaceURI" {generated}:localName="value"
99 * xmlns:prefix="namespaceURI" prefix:localName="value"&nbsp;<sup>[3]</sup>
105 * prefix:localName="value"&nbsp;<sup>[1][2]</sup><br />
112 * xmlns:prefix="namespaceURI" prefix:localName="value"&nbsp;<sup>[2][5]</sup>
117 * <th><code>writeStartElement(namespaceURI, localName)</code><br />
119 * <code>writeEmptyElement(namespaceURI, localName)</code></th>
123 * &lt;prefix:localName&gt;&nbsp;<sup>[1]</sup>
127 * &lt;{generated}:localName xmlns:{generated}="namespaceURI"&gt;
132 * &lt;prefix:localName&gt;&nbsp;<sup>[1]</sup>
141 * <th><code>writeStartElement(prefix, localName, namespaceURI)</code><br />
143 * <code>writeEmptyElement(prefix, localName, namespaceURI)</code></th>
148 * &lt;prefix:localName&gt;&nbsp;<sup>[1]</sup><br />
151 * &lt;{generated}:localName xmlns:{generated}="namespaceURI"&gt;
155 * &lt;prefix:localName xmlns:prefix="namespaceURI"&gt;&nbsp;<sup>[4]</sup>
161 * &lt;prefix:localName&gt;&nbsp;<sup>[1]</sup><br />
168 * &lt;prefix:localName&gt;&nbsp;
200 * @param localName local name of the tag, may not be null
203 public void writeStartElement(String localName)
209 * @param localName local name of the tag, may not be null
213 public void writeStartElement(String namespaceURI, String localName)
218 * @param localName local name of the tag, may not be null
224 String localName,
231 * @param localName local name of the tag, may not be null
235 public void writeEmptyElement(String namespaceURI, String localName)
241 * @param localName local name of the tag, may not be null
245 public void writeEmptyElement(String prefix, String localName, String namespaceURI)
250 * @param localName local name of the tag, may not be null
253 public void writeEmptyElement(String localName)
303 * @param localName the local name of the attribute
308 public void writeAttribute(String localName, String value)
315 * @param localName the local name of the attribute
324 String localName,
331 * @param localName the local name of the attribute
338 String localName,