com.esri.arcgis.geodatabase
Class ReplicaDescriptionExtension

java.lang.Object
  extended by com.esri.arcgis.geodatabase.ReplicaDescriptionExtension
All Implemented Interfaces:
IReplicaDescriptionExtension, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class ReplicaDescriptionExtension
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, IReplicaDescriptionExtension

Esri Replica Description Extension object.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

See Also:
Serialized Form

Constructor Summary
ReplicaDescriptionExtension(Object obj)
          Construct a ReplicaDescriptionExtension using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 boolean equals(Object o)
          Compare this object with another
 IUID getGUID()
          The GUID that identifies the replica description extension.
 String getName()
          The Name for this replica description extension.
 int hashCode()
          the hashcode for this object
 
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

ReplicaDescriptionExtension

public ReplicaDescriptionExtension(Object obj)
                            throws IOException
Construct a ReplicaDescriptionExtension using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to ReplicaDescriptionExtension.
Casting to this class from the return value of a method will not work, as this class represents an abstract class in ArcObjects.
*
ReplicaDescriptionExtension o = (ReplicaDescriptionExtension)obj; // will not work

ReplicaDescriptionExtension o = new ReplicaDescriptionExtension(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server

Throws:
IOException - if there are interop problems ReplicaDescriptionExtension theReplicaDescriptionExtension = (ReplicaDescriptionExtension) obj;
Method Detail

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

getName

public String getName()
               throws IOException,
                      AutomationException
The Name for this replica description extension.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Specified by:
getName in interface IReplicaDescriptionExtension
Returns:
The rdeName
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getGUID

public IUID getGUID()
             throws IOException,
                    AutomationException
The GUID that identifies the replica description extension.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Specified by:
getGUID in interface IReplicaDescriptionExtension
Returns:
A reference to a com.esri.arcgis.system.IUID
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.