com.esri.arcgisws
Class MarkerSymbol

java.lang.Object
  extended by com.esri.arcgisws.Symbol
      extended by com.esri.arcgisws.MarkerSymbol
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CartographicMarkerSymbol, SimpleMarkerSymbol

public abstract class MarkerSymbol
extends Symbol
implements Serializable

Marker Symbol Properties.

Java class for MarkerSymbol complex type.

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

 <complexType name="MarkerSymbol">
   <complexContent>
     <extension base="{http://www.esri.com/schemas/ArcGIS/10.0}Symbol">
       <sequence>
         <element name="Angle" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="Color" type="{http://www.esri.com/schemas/ArcGIS/10.0}Color" minOccurs="0"/>
         <element name="Size" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="XOffset" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="YOffset" type="{http://www.w3.org/2001/XMLSchema}double"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 
Marker Symbol Properties.

See Also:
Serialized Form

Constructor Summary
MarkerSymbol()
          MarkerSymbol default constructor.
MarkerSymbol(double angle, Color color, double size, double xOffset, double yOffset)
          Deprecated. 
 
Method Summary
 double getAngle()
          Marker symbol angle.
 Color getColor()
          Marker symbol color.
 double getSize()
          Marker symbol size.
 double getXOffset()
          Symbol X-axis offset from point location.
 double getYOffset()
          Symbol Y-axis offset from point location.
 void setAngle(double value)
          Marker symbol angle.
 void setColor(Color value)
          Marker symbol color.
 void setSize(double value)
          Marker symbol size.
 void setXOffset(double value)
          Sets the value of the xOffset property.
 void setYOffset(double value)
          Sets the value of the yOffset property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MarkerSymbol

@Deprecated
public MarkerSymbol(double angle,
                               Color color,
                               double size,
                               double xOffset,
                               double yOffset)
Deprecated. 

MarkerSymbol constructor.


MarkerSymbol

public MarkerSymbol()
MarkerSymbol default constructor.

Method Detail

getAngle

public double getAngle()
Marker symbol angle. Gets the value of the angle property.


setAngle

public void setAngle(double value)
Marker symbol angle. Sets the value of the angle property.


getColor

public Color getColor()
Marker symbol color. Gets the value of the color property.

Returns:
possible object is Color

setColor

public void setColor(Color value)
Marker symbol color. Sets the value of the color property.

Parameters:
value - allowed object is Color

getSize

public double getSize()
Marker symbol size. Gets the value of the size property.


setSize

public void setSize(double value)
Marker symbol size. Sets the value of the size property.


getXOffset

public double getXOffset()
Symbol X-axis offset from point location. Gets the value of the xOffset property.


setXOffset

public void setXOffset(double value)
Sets the value of the xOffset property.


getYOffset

public double getYOffset()
Symbol Y-axis offset from point location. Gets the value of the yOffset property.


setYOffset

public void setYOffset(double value)
Sets the value of the yOffset property.