< prev index next >

jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serialize/ElementState.java

Print this page




  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 
  22 package com.sun.org.apache.xml.internal.serialize;
  23 
  24 
  25 import java.util.Map;
  26 
  27 
  28 /**
  29  * Holds the state of the currently serialized element.
  30  *
  31  * @author <a href="mailto:arkin@intalio.com">Assaf Arkin</a>
  32  * @see BaseMarkupSerializer
  33  *
  34  * @deprecated As of JDK 1.9, Xerces 2.9.0, Xerces DOM L3 Serializer implementation
  35  * is replaced by that of Xalan. Main class
  36  * {@link com.sun.org.apache.xml.internal.serialize.DOMSerializerImpl} is replaced
  37  * by {@link com.sun.org.apache.xml.internal.serializer.dom3.LSSerializerImpl}.
  38  */
  39 public class ElementState
  40 {
  41 
  42 
  43     /**
  44      * The element's raw tag name (local or prefix:local).
  45      */
  46     public String rawName;
  47 
  48 
  49     /**
  50      * The element's local tag name.
  51      */
  52     public String localName;
  53 
  54 




  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 
  22 package com.sun.org.apache.xml.internal.serialize;
  23 
  24 
  25 import java.util.Map;
  26 
  27 
  28 /**
  29  * Holds the state of the currently serialized element.
  30  *
  31  * @author <a href="mailto:arkin@intalio.com">Assaf Arkin</a>
  32  * @see BaseMarkupSerializer
  33  *
  34  * @deprecated As of JDK 9, Xerces 2.9.0, Xerces DOM L3 Serializer implementation
  35  * is replaced by that of Xalan. Main class
  36  * {@link com.sun.org.apache.xml.internal.serialize.DOMSerializerImpl} is replaced
  37  * by {@link com.sun.org.apache.xml.internal.serializer.dom3.LSSerializerImpl}.
  38  */
  39 public class ElementState
  40 {
  41 
  42 
  43     /**
  44      * The element's raw tag name (local or prefix:local).
  45      */
  46     public String rawName;
  47 
  48 
  49     /**
  50      * The element's local tag name.
  51      */
  52     public String localName;
  53 
  54 


< prev index next >