Class CTSchema

java.lang.Object
org.xlsx4j.sml.CTSchema
All Implemented Interfaces:
Child

public class CTSchema
extends java.lang.Object
implements Child

Java class for CT_Schema complex type.

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

 <complexType name="CT_Schema">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <any/>
       </sequence>
       <attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="SchemaRef" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="Namespace" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="SchemaLanguage" type="{http://www.w3.org/2001/XMLSchema}token" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.util.List<java.lang.Object> content  
    protected java.lang.String id  
    protected java.lang.String namespace  
    protected java.lang.String schemaLanguage  
    protected java.lang.String schemaRef  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTSchema()  
  • Method Summary

    Modifier and Type Method Description
    void afterUnmarshal​(javax.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    java.util.List<java.lang.Object> getContent()
    Gets the value of the content property.
    java.lang.String getID()
    Gets the value of the id property.
    java.lang.String getNamespace()
    Gets the value of the namespace property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.String getSchemaLanguage()
    Gets the value of the schemaLanguage property.
    java.lang.String getSchemaRef()
    Gets the value of the schemaRef property.
    void setID​(java.lang.String value)
    Sets the value of the id property.
    void setNamespace​(java.lang.String value)
    Sets the value of the namespace property.
    void setParent​(java.lang.Object parent)  
    void setSchemaLanguage​(java.lang.String value)
    Sets the value of the schemaLanguage property.
    void setSchemaRef​(java.lang.String value)
    Sets the value of the schemaRef property.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • content

      protected java.util.List<java.lang.Object> content
    • id

      protected java.lang.String id
    • schemaRef

      protected java.lang.String schemaRef
    • namespace

      protected java.lang.String namespace
    • schemaLanguage

      protected java.lang.String schemaLanguage
  • Constructor Details

  • Method Details

    • getContent

      public java.util.List<java.lang.Object> getContent()
      Gets the value of the content 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 content property.

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

          getContent().add(newItem);
       

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

    • getID

      public java.lang.String getID()
      Gets the value of the id property.
      Returns:
      possible object is String
    • setID

      public void setID​(java.lang.String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
    • getSchemaRef

      public java.lang.String getSchemaRef()
      Gets the value of the schemaRef property.
      Returns:
      possible object is String
    • setSchemaRef

      public void setSchemaRef​(java.lang.String value)
      Sets the value of the schemaRef property.
      Parameters:
      value - allowed object is String
    • getNamespace

      public java.lang.String getNamespace()
      Gets the value of the namespace property.
      Returns:
      possible object is String
    • setNamespace

      public void setNamespace​(java.lang.String value)
      Sets the value of the namespace property.
      Parameters:
      value - allowed object is String
    • getSchemaLanguage

      public java.lang.String getSchemaLanguage()
      Gets the value of the schemaLanguage property.
      Returns:
      possible object is String
    • setSchemaLanguage

      public void setSchemaLanguage​(java.lang.String value)
      Sets the value of the schemaLanguage property.
      Parameters:
      value - allowed object is String
    • getParent

      public java.lang.Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent​(java.lang.Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal​(javax.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
      This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.