Class CTDbPr

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

public class CTDbPr extends Object implements Child

Java class for CT_DbPr complex type.

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

 <complexType name="CT_DbPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="connection" use="required" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="command" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="serverCommand" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="commandType" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="2" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • connection

      protected String connection
    • command

      protected String command
    • serverCommand

      protected String serverCommand
    • commandType

      protected Long commandType
  • Constructor Details

    • CTDbPr

      public CTDbPr()
  • Method Details

    • getConnection

      public String getConnection()
      Gets the value of the connection property.
      Returns:
      possible object is String
    • setConnection

      public void setConnection(String value)
      Sets the value of the connection property.
      Parameters:
      value - allowed object is String
    • getCommand

      public String getCommand()
      Gets the value of the command property.
      Returns:
      possible object is String
    • setCommand

      public void setCommand(String value)
      Sets the value of the command property.
      Parameters:
      value - allowed object is String
    • getServerCommand

      public String getServerCommand()
      Gets the value of the serverCommand property.
      Returns:
      possible object is String
    • setServerCommand

      public void setServerCommand(String value)
      Sets the value of the serverCommand property.
      Parameters:
      value - allowed object is String
    • getCommandType

      public long getCommandType()
      Gets the value of the commandType property.
      Returns:
      possible object is Long
    • setCommandType

      public void setCommandType(Long value)
      Sets the value of the commandType property.
      Parameters:
      value - allowed object is Long
    • getParent

      public 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(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, 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.