com.esri.arcgis.schematic
Class SchematicAnalystSheet

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

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

Schematic analyst sheet object.

Product Availability

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

See Also:
Serialized Form

Constructor Summary
SchematicAnalystSheet(Object obj)
          Construct a SchematicAnalystSheet 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

SchematicAnalystSheet

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

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

Throws:
IOException - if there are interop problems SchematicAnalystSheet theSchematicAnalystSheet = (SchematicAnalystSheet) 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.