Class Position


  • public class Position
    extends java.lang.Object

    Java class for position complex type.

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

     <complexType name="position">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <attribute name="widgetID" type="{http://www.w3.org/2001/XMLSchema}string" />
           <attribute name="column" type="{http://www.w3.org/2001/XMLSchema}integer" />
           <attribute name="row" type="{http://www.w3.org/2001/XMLSchema}integer" />
         </restriction>
       </complexContent>
     </complexType>
     
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.math.BigInteger column  
      protected java.math.BigInteger row  
      protected java.lang.String widgetID  
    • Constructor Summary

      Constructors 
      Constructor Description
      Position()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.math.BigInteger getColumn()
      Gets the value of the column property.
      java.math.BigInteger getRow()
      Gets the value of the row property.
      java.lang.String getWidgetID()
      Gets the value of the widgetID property.
      void setColumn​(java.math.BigInteger value)
      Sets the value of the column property.
      void setRow​(java.math.BigInteger value)
      Sets the value of the row property.
      void setWidgetID​(java.lang.String value)
      Sets the value of the widgetID property.
      • Methods inherited from class java.lang.Object

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

      • widgetID

        protected java.lang.String widgetID
      • column

        protected java.math.BigInteger column
      • row

        protected java.math.BigInteger row
    • Constructor Detail

      • Position

        public Position()
    • Method Detail

      • getWidgetID

        public java.lang.String getWidgetID()
        Gets the value of the widgetID property.
        Returns:
        possible object is String
      • setWidgetID

        public void setWidgetID​(java.lang.String value)
        Sets the value of the widgetID property.
        Parameters:
        value - allowed object is String
      • getColumn

        public java.math.BigInteger getColumn()
        Gets the value of the column property.
        Returns:
        possible object is BigInteger
      • setColumn

        public void setColumn​(java.math.BigInteger value)
        Sets the value of the column property.
        Parameters:
        value - allowed object is BigInteger
      • getRow

        public java.math.BigInteger getRow()
        Gets the value of the row property.
        Returns:
        possible object is BigInteger
      • setRow

        public void setRow​(java.math.BigInteger value)
        Sets the value of the row property.
        Parameters:
        value - allowed object is BigInteger