|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.esri.arcgis.interop.Dispatch
com.esri.arcgis.geodatabase.INetTopologyEditGENProxy
public class INetTopologyEditGENProxy
Provides access to members that add and delete network elements from the logical network. INetTopologyEditGEN is generic version of INetTopologyEdit.
| Field Summary | |
|---|---|
boolean |
noncastable
|
| Fields inherited from class com.esri.arcgis.interop.Dispatch |
|---|
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF, objRef |
| Constructor Summary | |
|---|---|
|
INetTopologyEditGENProxy()
|
|
INetTopologyEditGENProxy(Object obj)
|
protected |
INetTopologyEditGENProxy(Object obj,
String iid)
|
| Method Summary | |
|---|---|
int |
addEdgeByEndEIDs(INetElementDescription edgeDescription,
int fromJunctionEID,
int toJunctionEID)
Adds an edge element to the logical network between the specified junction elements. |
int |
addJunction(INetElementDescription junctionDescription)
Adds a junction element to the logical network. |
void |
addListener(String iidStr,
Object theListener,
Object theSource)
|
void |
deleteByEID(int eID,
int elementType)
Deletes the specified network element from the logical network. |
void |
deleteByEIDs(int elementType,
int[] elementEIDs)
Deletes the specified network elements from the logical network. |
void |
deleteByID(int userClassID,
int userID,
int userSubID,
int elementType)
Deletes the specified network element from the logical network. |
void |
getAdjacentEdge(int atJunctionEID,
int index,
int[] adjacentEdge,
boolean[] reverseOrientation)
Returns the network element ID of the index'th adjacent edge to the specified junction. |
int |
getAdjacentEdgeCount(int atJunctionEID)
Returns the number of edges adjacent to the specified junction. |
void |
getAdjacentEdges(int atJunctionEID,
int[][] adjacentEdges,
boolean[][] reverseOrientation)
Returns the network element IDs of all the edges adjacent to the specified junction. |
void |
getFromToJunctionEIDs(int edgeEID,
int[] fromJunctionEID,
int[] toJunctionEID)
Returns the network element IDs of the junctions adjacent to the specified edge. |
void |
removeListener(String iidStr,
Object theListener)
|
| Methods inherited from class com.esri.arcgis.interop.Dispatch |
|---|
bindUsingMoniker, constructVtblPosTable, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, getVtblPos, hashCode, initDispatch, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, optimizedVtblInvoke, queryInterface, readExternal, release, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public boolean noncastable
| Constructor Detail |
|---|
public INetTopologyEditGENProxy()
public INetTopologyEditGENProxy(Object obj)
throws IOException
IOException
protected INetTopologyEditGENProxy(Object obj,
String iid)
throws IOException
IOException| Method Detail |
|---|
public void addListener(String iidStr,
Object theListener,
Object theSource)
throws IOException
addListener in class com.esri.arcgis.interop.DispatchIOException
public void removeListener(String iidStr,
Object theListener)
throws IOException
removeListener in class com.esri.arcgis.interop.DispatchIOException
public void getFromToJunctionEIDs(int edgeEID,
int[] fromJunctionEID,
int[] toJunctionEID)
throws IOException,
AutomationException
getFromToJunctionEIDs in interface INetTopologyEditGENedgeEID - The edgeEID (in)fromJunctionEID - The fromJunctionEID (out: use single element array)toJunctionEID - The toJunctionEID (out: use single element array)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public int getAdjacentEdgeCount(int atJunctionEID)
throws IOException,
AutomationException
getAdjacentEdgeCount in interface INetTopologyEditGENatJunctionEID - The atJunctionEID (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void getAdjacentEdge(int atJunctionEID,
int index,
int[] adjacentEdge,
boolean[] reverseOrientation)
throws IOException,
AutomationException
getAdjacentEdge in interface INetTopologyEditGENatJunctionEID - The atJunctionEID (in)index - The index (in)adjacentEdge - The adjacentEdge (out: use single element array)reverseOrientation - The reverseOrientation (out: use single element array)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void getAdjacentEdges(int atJunctionEID,
int[][] adjacentEdges,
boolean[][] reverseOrientation)
throws IOException,
AutomationException
GetAdjacentEdges returns an array of the edges connected to the specified junction, along with their orientation.
INetTopologyEditGEN::GetAdjacentEdges is
marked as hidden, since its functionality is similar to
IForwardStarGEN::QueryAdjacentEdges(). Clients should use
QueryAdjacentEdges in lieu of using
INetTopologyEditGEN::GetAdjacentEdges.
getAdjacentEdges in interface INetTopologyEditGENatJunctionEID - The atJunctionEID (in)adjacentEdges - The adjacentEdges (in/out: use single element array)reverseOrientation - The reverseOrientation (in/out: use single element array)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public int addJunction(INetElementDescription junctionDescription)
throws IOException,
AutomationException
addJunction in interface INetTopologyEditGENjunctionDescription - A reference to a com.esri.arcgis.geodatabase.INetElementDescription (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public int addEdgeByEndEIDs(INetElementDescription edgeDescription,
int fromJunctionEID,
int toJunctionEID)
throws IOException,
AutomationException
addEdgeByEndEIDs in interface INetTopologyEditGENedgeDescription - A reference to a com.esri.arcgis.geodatabase.INetElementDescription (in)fromJunctionEID - The fromJunctionEID (in)toJunctionEID - The toJunctionEID (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void deleteByID(int userClassID,
int userID,
int userSubID,
int elementType)
throws IOException,
AutomationException
deleteByID in interface INetTopologyEditGENuserClassID - The userClassID (in)userID - The userID (in)userSubID - The userSubID (in)elementType - A com.esri.arcgis.geodatabase.esriElementType constant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void deleteByEID(int eID,
int elementType)
throws IOException,
AutomationException
deleteByEID in interface INetTopologyEditGENeID - The eID (in)elementType - A com.esri.arcgis.geodatabase.esriElementType constant (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void deleteByEIDs(int elementType,
int[] elementEIDs)
throws IOException,
AutomationException
deleteByEIDs in interface INetTopologyEditGENelementType - A com.esri.arcgis.geodatabase.esriElementType constant (in)elementEIDs - The elementEIDs (in)
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||