< prev index next >

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

Print this page


   1 /*
   2  * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 /*
   5  * Licensed to the Apache Software Foundation (ASF) under one or more
   6  * contributor license agreements.  See the NOTICE file distributed with
   7  * this work for additional information regarding copyright ownership.
   8  * The ASF licenses this file to You under the Apache License, Version 2.0
   9  * (the "License"); you may not use this file except in compliance with
  10  * the License.  You may obtain a copy of the License at
  11  *
  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  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 
  55     /**
  56      * The element's namespace URI.
  57      */
  58     public String namespaceURI;


   1 /*
   2  * Copyright (c) 2015, 2017 Oracle and/or its affiliates. All rights reserved.
   3  */
   4 /*
   5  * Licensed to the Apache Software Foundation (ASF) under one or more
   6  * contributor license agreements.  See the NOTICE file distributed with
   7  * this work for additional information regarding copyright ownership.
   8  * The ASF licenses this file to You under the Apache License, Version 2.0
   9  * (the "License"); you may not use this file except in compliance with
  10  * the License.  You may obtain a copy of the License at
  11  *
  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  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 @Deprecated
  40 public class ElementState
  41 {
  42 
  43 
  44     /**
  45      * The element's raw tag name (local or prefix:local).
  46      */
  47     public String rawName;
  48 
  49 
  50     /**
  51      * The element's local tag name.
  52      */
  53     public String localName;
  54 
  55 
  56     /**
  57      * The element's namespace URI.
  58      */
  59     public String namespaceURI;


< prev index next >