com.esri.arcgis.datasourcesfile
Class SMRouterPoint

java.lang.Object
  extended by com.esri.arcgis.datasourcesfile.SMRouterPoint
All Implemented Interfaces:
ISMRouterPoint, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class SMRouterPoint
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, ISMRouterPoint

The geographic location of the point.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also:
Serialized Form

Constructor Summary
SMRouterPoint()
          Constructs a SMRouterPoint using ArcGIS Engine.
SMRouterPoint(Object obj)
          Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
SMRouterPoint theSMRouterPoint = (SMRouterPoint) obj;
 
Method Summary
 boolean equals(Object o)
          Compare this object with another
static String getClsid()
          getClsid.
 double getX()
          The X coordinate of the point.
 double getY()
          The Y coordinate of the point.
 int hashCode()
          the hashcode for this object
 void setX(double pVal)
          The X coordinate of the point.
 void setY(double pVal)
          The Y coordinate of the point.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef
getJintegraDispatch, release
 

Constructor Detail

SMRouterPoint

public SMRouterPoint()
              throws IOException,
                     UnknownHostException
Constructs a SMRouterPoint using ArcGIS Engine.

Throws:
IOException - if there are interop problems
UnknownHostException - if there are interop problems

SMRouterPoint

public SMRouterPoint(Object obj)
              throws IOException
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
SMRouterPoint theSMRouterPoint = (SMRouterPoint) obj;

Construct a SMRouterPoint using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to SMRouterPoint.

Parameters:
obj - an object returned from ArcGIS Engine or Server
Throws:
IOException - if there are interop problems
Method Detail

getClsid

public static String getClsid()
getClsid.


equals

public boolean equals(Object o)
Compare this object with another

Overrides:
equals in class Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class Object

getX

public double getX()
            throws IOException,
                   AutomationException
The X coordinate of the point.

Description

Returns the X coordinate of the point.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
getX in interface ISMRouterPoint
Returns:
The pVal
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setX

public void setX(double pVal)
          throws IOException,
                 AutomationException
The X coordinate of the point.

Description

Sets the X coordinate of the point.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
setX in interface ISMRouterPoint
Parameters:
pVal - The pVal (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getY

public double getY()
            throws IOException,
                   AutomationException
The Y coordinate of the point.

Description

Returns the Y coordinate of the point.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
getY in interface ISMRouterPoint
Returns:
The pVal
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setY

public void setY(double pVal)
          throws IOException,
                 AutomationException
The Y coordinate of the point.

Description

Sets the Y coordinate of the point.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Specified by:
setY in interface ISMRouterPoint
Parameters:
pVal - The pVal (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.