org.plasma.xml.xslt
Class Output

java.lang.Object
  extended by org.plasma.xml.xslt.AnyType
      extended by org.plasma.xml.xslt.Output

public class Output
extends AnyType

Java class for anonymous complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType>
   <complexContent>
     <extension base="{http://www.w3.org/1999/XSL/Transform}anyType">
       <attribute name="method">
         <simpleType>
           <union>
             <simpleType>
               <restriction base="{http://www.w3.org/2001/XMLSchema}string">
                 <enumeration value="xml"/>
                 <enumeration value="html"/>
                 <enumeration value="text"/>
               </restriction>
             </simpleType>
             <simpleType>
               <restriction base="{http://www.w3.org/1999/XSL/Transform}QName">
                 <pattern value="\c*:\c*"/>
               </restriction>
             </simpleType>
           </union>
         </simpleType>
       </attribute>
       <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
       <attribute name="encoding" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="omit-xml-declaration" type="{http://www.w3.org/1999/XSL/Transform}YesOrNo" />
       <attribute name="standalone" type="{http://www.w3.org/1999/XSL/Transform}YesOrNo" />
       <attribute name="doctype-public" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="doctype-system" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="cdata-section-elements" type="{http://www.w3.org/1999/XSL/Transform}QNames" />
       <attribute name="indent" type="{http://www.w3.org/1999/XSL/Transform}YesOrNo" />
       <attribute name="media-type" type="{http://www.w3.org/2001/XMLSchema}string" />
     </extension>
   </complexContent>
 </complexType>
 


Field Summary
protected  List<String> cdataSectionElements
           
protected  String doctypePublic
           
protected  String doctypeSystem
           
protected  String encoding
           
protected  YesOrNo indent
           
protected  String mediaType
           
protected  List<String> methods
           
protected  YesOrNo omitXmlDeclaration
           
protected  YesOrNo standalone
           
protected  String version
           
 
Constructor Summary
Output()
           
 
Method Summary
 List<String> getCdataSectionElements()
          Gets the value of the cdataSectionElements property.
 String getDoctypePublic()
          Gets the value of the doctypePublic property.
 String getDoctypeSystem()
          Gets the value of the doctypeSystem property.
 String getEncoding()
          Gets the value of the encoding property.
 YesOrNo getIndent()
          Gets the value of the indent property.
 String getMediaType()
          Gets the value of the mediaType property.
 List<String> getMethods()
          Gets the value of the methods property.
 YesOrNo getOmitXmlDeclaration()
          Gets the value of the omitXmlDeclaration property.
 YesOrNo getStandalone()
          Gets the value of the standalone property.
 String getVersion()
          Gets the value of the version property.
 void setDoctypePublic(String value)
          Sets the value of the doctypePublic property.
 void setDoctypeSystem(String value)
          Sets the value of the doctypeSystem property.
 void setEncoding(String value)
          Sets the value of the encoding property.
 void setIndent(YesOrNo value)
          Sets the value of the indent property.
 void setMediaType(String value)
          Sets the value of the mediaType property.
 void setOmitXmlDeclaration(YesOrNo value)
          Sets the value of the omitXmlDeclaration property.
 void setStandalone(YesOrNo value)
          Sets the value of the standalone property.
 void setVersion(String value)
          Sets the value of the version property.
 
Methods inherited from class org.plasma.xml.xslt.AnyType
getOtherAttributes
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

methods

protected List<String> methods

version

protected String version

encoding

protected String encoding

omitXmlDeclaration

protected YesOrNo omitXmlDeclaration

standalone

protected YesOrNo standalone

doctypePublic

protected String doctypePublic

doctypeSystem

protected String doctypeSystem

cdataSectionElements

protected List<String> cdataSectionElements

indent

protected YesOrNo indent

mediaType

protected String mediaType
Constructor Detail

Output

public Output()
Method Detail

getMethods

public List<String> getMethods()
Gets the value of the methods property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the methods property.

For example, to add a new item, do as follows:

    getMethods().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getVersion

public String getVersion()
Gets the value of the version property.

Returns:
possible object is String

setVersion

public void setVersion(String value)
Sets the value of the version property.

Parameters:
value - allowed object is String

getEncoding

public String getEncoding()
Gets the value of the encoding property.

Returns:
possible object is String

setEncoding

public void setEncoding(String value)
Sets the value of the encoding property.

Parameters:
value - allowed object is String

getOmitXmlDeclaration

public YesOrNo getOmitXmlDeclaration()
Gets the value of the omitXmlDeclaration property.

Returns:
possible object is YesOrNo

setOmitXmlDeclaration

public void setOmitXmlDeclaration(YesOrNo value)
Sets the value of the omitXmlDeclaration property.

Parameters:
value - allowed object is YesOrNo

getStandalone

public YesOrNo getStandalone()
Gets the value of the standalone property.

Returns:
possible object is YesOrNo

setStandalone

public void setStandalone(YesOrNo value)
Sets the value of the standalone property.

Parameters:
value - allowed object is YesOrNo

getDoctypePublic

public String getDoctypePublic()
Gets the value of the doctypePublic property.

Returns:
possible object is String

setDoctypePublic

public void setDoctypePublic(String value)
Sets the value of the doctypePublic property.

Parameters:
value - allowed object is String

getDoctypeSystem

public String getDoctypeSystem()
Gets the value of the doctypeSystem property.

Returns:
possible object is String

setDoctypeSystem

public void setDoctypeSystem(String value)
Sets the value of the doctypeSystem property.

Parameters:
value - allowed object is String

getCdataSectionElements

public List<String> getCdataSectionElements()
Gets the value of the cdataSectionElements property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the cdataSectionElements property.

For example, to add a new item, do as follows:

    getCdataSectionElements().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getIndent

public YesOrNo getIndent()
Gets the value of the indent property.

Returns:
possible object is YesOrNo

setIndent

public void setIndent(YesOrNo value)
Sets the value of the indent property.

Parameters:
value - allowed object is YesOrNo

getMediaType

public String getMediaType()
Gets the value of the mediaType property.

Returns:
possible object is String

setMediaType

public void setMediaType(String value)
Sets the value of the mediaType property.

Parameters:
value - allowed object is String


Copyright © 2014. All rights reserved.