Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 29 → Rev 30

/sbm4mylyn/trunk/src/net/brutex/sbm/wsclient/QueryRange.java
0,0 → 1,115
 
package net.brutex.sbm.wsclient;
 
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
 
 
/**
* <p>Java class for QueryRange complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="QueryRange">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="startIndex" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* &lt;element name="fetchSize" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* &lt;element name="totalCount" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "QueryRange", propOrder = {
"startIndex",
"fetchSize",
"totalCount"
})
public class QueryRange {
 
protected BigInteger startIndex;
protected BigInteger fetchSize;
protected BigInteger totalCount;
 
/**
* Gets the value of the startIndex property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getStartIndex() {
return startIndex;
}
 
/**
* Sets the value of the startIndex property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setStartIndex(BigInteger value) {
this.startIndex = value;
}
 
/**
* Gets the value of the fetchSize property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getFetchSize() {
return fetchSize;
}
 
/**
* Sets the value of the fetchSize property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setFetchSize(BigInteger value) {
this.fetchSize = value;
}
 
/**
* Gets the value of the totalCount property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getTotalCount() {
return totalCount;
}
 
/**
* Sets the value of the totalCount property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setTotalCount(BigInteger value) {
this.totalCount = value;
}
 
}
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property