com.esri.arcgis.schematic
Interface ISchematicLink

All Superinterfaces:
IObject, IRow, IRowBuffer, java.io.Serializable
All Known Implementing Classes:
ISchematicLinkProxy, SchematicLink, SchematicSubLink

public interface ISchematicLink
extends IObject, java.io.Serializable

Provides access to members that control the schematic link element.


Method Summary
 int getFlowDirection()
          Flow direction of the schematic link.
 ISchematicNode getFromNode()
          Schematic origin node of the link.
 int getFromPort()
          Port number on the schematic origin node used to connect the schematic link.
 ISchematicNode getToNode()
          Schematic extremity node of the link.
 int getToPort()
          Port number on the schematic extremity node used to connect the schematic link.
 void setFlowDirection(int flowDirection)
          Flow direction of the schematic link.
 void setFromNodeByRef(ISchematicNode schematicNode)
          Schematic origin node of the link.
 void setFromPort(int portNumber)
          Port number on the schematic origin node used to connect the schematic link.
 void setToNodeByRef(ISchematicNode schematicNode)
          Schematic extremity node of the link.
 void setToPort(int portNumber)
          Port number on the schematic extremity node used to connect the schematic link.
 
Methods inherited from interface com.esri.arcgis.geodatabase.IObject
esri_getClass
 
Methods inherited from interface com.esri.arcgis.geodatabase.IRow
delete, getOID, getTable, isHasOID, store
 
Methods inherited from interface com.esri.arcgis.geodatabase.IRowBuffer
getFields, getValue, setValue
 

Method Detail

getFromNode

public ISchematicNode getFromNode()
                           throws java.io.IOException,
                                  AutomationException
Schematic origin node of the link.

Returns:
A reference to a com.esri.arcgis.schematic.ISchematicNode
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setFromNodeByRef

public void setFromNodeByRef(ISchematicNode schematicNode)
                      throws java.io.IOException,
                             AutomationException
Schematic origin node of the link.

Parameters:
schematicNode - A reference to a com.esri.arcgis.schematic.ISchematicNode (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getToNode

public ISchematicNode getToNode()
                         throws java.io.IOException,
                                AutomationException
Schematic extremity node of the link.

Returns:
A reference to a com.esri.arcgis.schematic.ISchematicNode
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setToNodeByRef

public void setToNodeByRef(ISchematicNode schematicNode)
                    throws java.io.IOException,
                           AutomationException
Schematic extremity node of the link.

Parameters:
schematicNode - A reference to a com.esri.arcgis.schematic.ISchematicNode (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getFromPort

public int getFromPort()
                throws java.io.IOException,
                       AutomationException
Port number on the schematic origin node used to connect the schematic link.

Returns:
The portNumber
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setFromPort

public void setFromPort(int portNumber)
                 throws java.io.IOException,
                        AutomationException
Port number on the schematic origin node used to connect the schematic link.

Parameters:
portNumber - The portNumber (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getToPort

public int getToPort()
              throws java.io.IOException,
                     AutomationException
Port number on the schematic extremity node used to connect the schematic link.

Returns:
The portNumber
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setToPort

public void setToPort(int portNumber)
               throws java.io.IOException,
                      AutomationException
Port number on the schematic extremity node used to connect the schematic link.

Parameters:
portNumber - The portNumber (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getFlowDirection

public int getFlowDirection()
                     throws java.io.IOException,
                            AutomationException
Flow direction of the schematic link.

Returns:
A com.esri.arcgis.geodatabase.esriFlowDirection constant
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setFlowDirection

public void setFlowDirection(int flowDirection)
                      throws java.io.IOException,
                             AutomationException
Flow direction of the schematic link.

Parameters:
flowDirection - A com.esri.arcgis.geodatabase.esriFlowDirection constant (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.