Package gov.nasa.gsfc.sscweb.schema
Class GraphScale
java.lang.Object
gov.nasa.gsfc.sscweb.schema.GraphScale
Manual scale values for an SSC graphing request.
<p>Java class for GraphScale complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="GraphScale">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="MinX" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MaxX" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MinY" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MaxY" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MinZ" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MaxZ" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MinR" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MaxR" type="{http://www.w3.org/2001/XMLSchema}int"/>
</sequence>
</restriction>
</complexContent>
</complexType>
}</pre>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected intMaximum R value.protected intMaximum X value.protected intMaximum Y value.protected intMaximum Z value.protected intMinimum R value.protected intMinimum X value.protected intMinimum Y value.protected intMinimum Z value. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintgetMaxR()Maximum R value.intgetMaxX()Maximum X value.intgetMaxY()Maximum Y value.intgetMaxZ()Maximum Z value.intgetMinR()Minimum R value.intgetMinX()Minimum X value.intgetMinY()Minimum Y value.intgetMinZ()Minimum Z value.voidsetMaxR(int value) Sets the value of the maxR property.voidsetMaxX(int value) Sets the value of the maxX property.voidsetMaxY(int value) Sets the value of the maxY property.voidsetMaxZ(int value) Sets the value of the maxZ property.voidsetMinR(int value) Sets the value of the minR property.voidsetMinX(int value) Sets the value of the minX property.voidsetMinY(int value) Sets the value of the minY property.voidsetMinZ(int value) Sets the value of the minZ property.
-
Field Details
-
minX
protected int minXMinimum X value. -
maxX
protected int maxXMaximum X value. -
minY
protected int minYMinimum Y value. -
maxY
protected int maxYMaximum Y value. -
minZ
protected int minZMinimum Z value. -
maxZ
protected int maxZMaximum Z value. -
minR
protected int minRMinimum R value. -
maxR
protected int maxRMaximum R value.
-
-
Constructor Details
-
GraphScale
public GraphScale()
-
-
Method Details
-
getMinX
public int getMinX()Minimum X value. -
setMinX
public void setMinX(int value) Sets the value of the minX property. -
getMaxX
public int getMaxX()Maximum X value. -
setMaxX
public void setMaxX(int value) Sets the value of the maxX property. -
getMinY
public int getMinY()Minimum Y value. -
setMinY
public void setMinY(int value) Sets the value of the minY property. -
getMaxY
public int getMaxY()Maximum Y value. -
setMaxY
public void setMaxY(int value) Sets the value of the maxY property. -
getMinZ
public int getMinZ()Minimum Z value. -
setMinZ
public void setMinZ(int value) Sets the value of the minZ property. -
getMaxZ
public int getMaxZ()Maximum Z value. -
setMaxZ
public void setMaxZ(int value) Sets the value of the maxZ property. -
getMinR
public int getMinR()Minimum R value. -
setMinR
public void setMinR(int value) Sets the value of the minR property. -
getMaxR
public int getMaxR()Maximum R value. -
setMaxR
public void setMaxR(int value) Sets the value of the maxR property.
-