com.esri.arcgis.schematic
Class SchematicAlgorithmSheet

java.lang.Object
  extended by com.esri.arcgis.schematic.SchematicAlgorithmSheet
All Implemented Interfaces:
com.esri.arcgis.interop.RemoteObjRef, ISchematicAlgorithmSheet, Serializable

public class SchematicAlgorithmSheet
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, ISchematicAlgorithmSheet

Schematic algorithm sheet object.

Product Availability

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

See Also:
Serialized Form

Constructor Summary
SchematicAlgorithmSheet(Object obj)
          Construct a SchematicAlgorithmSheet using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 void addPage(String classID)
          Adds the specified schematic algorithm properties page in the schematic algorithm sheet.
 boolean equals(Object o)
          Compare this object with another
 int hashCode()
          the hashcode for this object
 boolean isHasPage(ISchematicAlgorithm algorithm)
          Indicates if an algorithm properties page related to the specified schematic algorithm is defined for the schematic algorithm sheet.
 void removePage(String classID)
          Removes the specified schematic algorithm properties page from the schematic algorithm sheet.
 void show(ISchematicAlgorithm algorithm)
          Shows the schematic algorithm sheet.
 
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

SchematicAlgorithmSheet

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

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

Throws:
IOException - if there are interop problems SchematicAlgorithmSheet theSchematicAlgorithmSheet = (SchematicAlgorithmSheet) 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

addPage

public void addPage(String classID)
             throws IOException,
                    AutomationException
Adds the specified schematic algorithm properties page in the schematic algorithm sheet.

Product Availability

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

Specified by:
addPage in interface ISchematicAlgorithmSheet
Parameters:
classID - The classID (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
ISchematicAlgorithmSheet.removePage(String), ISchematicAlgorithmSheet.isHasPage(com.esri.arcgis.schematic.ISchematicAlgorithm)

removePage

public void removePage(String classID)
                throws IOException,
                       AutomationException
Removes the specified schematic algorithm properties page from the schematic algorithm sheet.

Product Availability

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

Specified by:
removePage in interface ISchematicAlgorithmSheet
Parameters:
classID - The classID (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
ISchematicAlgorithmSheet.addPage(String), ISchematicAlgorithmSheet.isHasPage(com.esri.arcgis.schematic.ISchematicAlgorithm)

show

public void show(ISchematicAlgorithm algorithm)
          throws IOException,
                 AutomationException
Shows the schematic algorithm sheet.

Product Availability

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

Specified by:
show in interface ISchematicAlgorithmSheet
Parameters:
algorithm - A reference to a com.esri.arcgis.schematic.ISchematicAlgorithm (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isHasPage

public boolean isHasPage(ISchematicAlgorithm algorithm)
                  throws IOException,
                         AutomationException
Indicates if an algorithm properties page related to the specified schematic algorithm is defined for the schematic algorithm sheet.

Product Availability

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

Specified by:
isHasPage in interface ISchematicAlgorithmSheet
Parameters:
algorithm - A reference to a com.esri.arcgis.schematic.ISchematicAlgorithm (in)
Returns:
The pVal
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.