Class CTServerFormat

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

public class CTServerFormat
extends java.lang.Object
implements Child

Java class for CT_ServerFormat complex type.

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

 <complexType name="CT_ServerFormat">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="culture" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="format" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.String culture  
    protected java.lang.String format  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTServerFormat()  
  • 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.lang.String getCulture()
    Gets the value of the culture property.
    java.lang.String getFormat()
    Gets the value of the format property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    void setCulture​(java.lang.String value)
    Sets the value of the culture property.
    void setFormat​(java.lang.String value)
    Sets the value of the format property.
    void setParent​(java.lang.Object parent)  

    Methods inherited from class java.lang.Object

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

    • culture

      protected java.lang.String culture
    • format

      protected java.lang.String format
  • Constructor Details

  • Method Details

    • getCulture

      public java.lang.String getCulture()
      Gets the value of the culture property.
      Returns:
      possible object is String
    • setCulture

      public void setCulture​(java.lang.String value)
      Sets the value of the culture property.
      Parameters:
      value - allowed object is String
    • getFormat

      public java.lang.String getFormat()
      Gets the value of the format property.
      Returns:
      possible object is String
    • setFormat

      public void setFormat​(java.lang.String value)
      Sets the value of the format 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.