blob: 4d601e8f634c9c9b6ff23acb3a84b100eec3b392 [file] [log] [blame]
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<html>
<body>
Contains core interfaces of the Axiom API.
<p>In particular, this package defines interfaces for the information items identified by the
<a href="http://www.w3.org/TR/xml-infoset/">XML Information Set</a> W3C Recommendation:</p>
<table border="1">
<caption>Interfaces defined by Axiom.</caption>
<thead>
<tr>
<th>Section</th><th>Information item</th><th>Interface</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.document">2.1</a></td>
<td>Document information item</td>
<td>{@link org.apache.axiom.om.OMDocument}</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.element">2.2</a></td>
<td>Element information item</td>
<td>{@link org.apache.axiom.om.OMElement}</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.attribute">2.3</a></td>
<td>Attribute information item</td>
<td>{@link org.apache.axiom.om.OMAttribute}</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.pi">2.4</a></td>
<td>Processing instruction information item</td>
<td>{@link org.apache.axiom.om.OMProcessingInstruction}</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.rse">2.5</a></td>
<td>Unexpanded entity reference information item</td>
<td>Not supported</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.character">2.6</a></td>
<td>Character information item</td>
<td>{@link org.apache.axiom.om.OMText}</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.comment">2.7</a></td>
<td>Comment information item</td>
<td>{@link org.apache.axiom.om.OMComment}</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.doctype">2.8</a></td>
<td>Document type declaration information item</td>
<td>{@link org.apache.axiom.om.OMDocType}</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.entity.unparsed">2.9</a></td>
<td>Unparsed entity information item</td>
<td>Not supported</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.notation">2.10</a></td>
<td>Notation information item</td>
<td>Not supported</td>
</tr>
<tr>
<td><a href="http://www.w3.org/TR/xml-infoset/#infoitem.namespace">2.11</a></td>
<td>Namespace information item</td>
<td>{@link org.apache.axiom.om.OMNamespace}</td>
</tr>
</tbody>
</table>
<p>The package also contains a set of super-interfaces that define common properties and operations
shared by several information items: {@link org.apache.axiom.om.OMSerializable},
{@link org.apache.axiom.om.OMNode} and {@link org.apache.axiom.om.OMContainer}.</p>
</body>
</html>