com.esri.arcgis.geodatabase
Class IComplexJunctionFeatureProxy

java.lang.Object
  extended bycom.esri.arcgis.interop.Dispatch
      extended bycom.esri.arcgis.geodatabase.IComplexJunctionFeatureProxy
All Implemented Interfaces:
java.io.Externalizable, IComplexJunctionFeature, java.io.Serializable

public class IComplexJunctionFeatureProxy
extends Dispatch
implements IComplexJunctionFeature, java.io.Serializable

Provides access to members that return and modify complex junction features.

Product Availability

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

See Also:
Serialized Form

Field Summary
static java.lang.Class targetClass
           
 
Fields inherited from class com.esri.arcgis.interop.Dispatch
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF
 
Constructor Summary
  IComplexJunctionFeatureProxy()
          For internal use only
  IComplexJunctionFeatureProxy(java.lang.Object obj)
           
protected IComplexJunctionFeatureProxy(java.lang.Object obj, java.lang.String iid)
           
  IComplexJunctionFeatureProxy(java.lang.String CLSID, java.lang.String host, AuthInfo authInfo)
           
protected IComplexJunctionFeatureProxy(java.lang.String CLSID, java.lang.String iid, java.lang.String host, AuthInfo authInfo)
           
 
Method Summary
 void addListener(java.lang.String iidStr, java.lang.Object theListener, java.lang.Object theSource)
          Adds a Java object to be a listener for a specific kind of event generated by the COM object.
 int findJunctionEID(IPoint point)
          The EID associated with the JunctionElement at the specified point.
 IEdgeFeature getEdgeFeature(int connectionPointIndex, int index)
          The EdgeFeature associated with the specified index value and the indexed connection point.
 int getEdgeFeatureCount(int connectionPointIndex)
          The number of EdgeFeatures associated with the indexed connection point.
 int getFieldToEIDMapping(int fieldIndex)
          The EID associated with the specified field index.
 IGeometry getGeometryForEdgeElement(int subID)
          The geometry corresponding to the element with the given subID.
 int getJunctionElementCount()
          The number of junctions associated with this Feature.
 int getTopologicalConfiguration()
          The configuration of this Feature.
 void removeListener(java.lang.String iidStr, java.lang.Object theListener)
          Removes a Java object as a listener to events generated by a COM object.
 void setJunctionElementCount(int numJunctions)
          The number of junctions associated with this Feature.
 void setRotationAngle(double rhs1)
          The rotation angle of this Feature.
 void setTopologicalConfiguration(int configuration)
          The configuration of this Feature.
 
Methods inherited from class com.esri.arcgis.interop.Dispatch
bindUsingMoniker, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, hashCode, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, queryInterface, readExternal, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

targetClass

public static final java.lang.Class targetClass
Constructor Detail

IComplexJunctionFeatureProxy

public IComplexJunctionFeatureProxy(java.lang.String CLSID,
                                    java.lang.String host,
                                    AuthInfo authInfo)
                             throws java.net.UnknownHostException,
                                    java.io.IOException

IComplexJunctionFeatureProxy

public IComplexJunctionFeatureProxy()
For internal use only


IComplexJunctionFeatureProxy

public IComplexJunctionFeatureProxy(java.lang.Object obj)
                             throws java.io.IOException

IComplexJunctionFeatureProxy

protected IComplexJunctionFeatureProxy(java.lang.Object obj,
                                       java.lang.String iid)
                                throws java.io.IOException

IComplexJunctionFeatureProxy

protected IComplexJunctionFeatureProxy(java.lang.String CLSID,
                                       java.lang.String iid,
                                       java.lang.String host,
                                       AuthInfo authInfo)
                                throws java.io.IOException
Method Detail

addListener

public void addListener(java.lang.String iidStr,
                        java.lang.Object theListener,
                        java.lang.Object theSource)
                 throws java.io.IOException
Description copied from class: Dispatch
Adds a Java object to be a listener for a specific kind of event generated by the COM object. when you wish to invoke method on the COM object using IDispatch (not using custom marshalling).

Overrides:
addListener in class Dispatch
Parameters:
iidStr - the ID of the outgoing interface, implemented by the listener
theListener - the object to be informed of the events
theSource - the proxy class that represents the COM class that is the source of the events
Throws:
java.io.IOException

removeListener

public void removeListener(java.lang.String iidStr,
                           java.lang.Object theListener)
                    throws java.io.IOException
Description copied from class: Dispatch
Removes a Java object as a listener to events generated by a COM object. when you wish to invoke method on the COM object using IDispatch (not using custom marshalling).

Overrides:
removeListener in class Dispatch
Parameters:
iidStr - the ID of the outgoing interface, implemented by the listener
theListener - the object that no longer wishes to be informed of the events
Throws:
java.io.IOException

getGeometryForEdgeElement

public IGeometry getGeometryForEdgeElement(int subID)
                                    throws java.io.IOException,
                                           AutomationException
Description copied from interface: IComplexJunctionFeature
The geometry corresponding to the element with the given subID.

Supported Platforms

Windows, Solaris, Linux

Remarks

It is recommended that developers do not use Complex Junctions in their data modeling solutions.  Developers can leverage existing Geodatabase components in order to implement partial functionality, such as IFeatureClassExtension.

Specified by:
getGeometryForEdgeElement in interface IComplexJunctionFeature
Parameters:
subID - The subID (in)
Returns:
A reference to a com.esri.arcgis.geometry.IGeometry
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getEdgeFeatureCount

public int getEdgeFeatureCount(int connectionPointIndex)
                        throws java.io.IOException,
                               AutomationException
Description copied from interface: IComplexJunctionFeature
The number of EdgeFeatures associated with the indexed connection point.

Supported Platforms

Windows, Solaris, Linux

Remarks

It is recommended that developers do not use Complex Junctions in their data modeling solutions.  Developers can leverage existing Geodatabase components in order to implement partial functionality, such as IFeatureClassExtension.

Specified by:
getEdgeFeatureCount in interface IComplexJunctionFeature
Parameters:
connectionPointIndex - The connectionPointIndex (in)
Returns:
The numFeatures
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getEdgeFeature

public IEdgeFeature getEdgeFeature(int connectionPointIndex,
                                   int index)
                            throws java.io.IOException,
                                   AutomationException
Description copied from interface: IComplexJunctionFeature
The EdgeFeature associated with the specified index value and the indexed connection point.

Supported Platforms

Windows, Solaris, Linux

Remarks

It is recommended that developers do not use Complex Junctions in their data modeling solutions.  Developers can leverage existing Geodatabase components in order to implement partial functionality, such as IFeatureClassExtension.

Specified by:
getEdgeFeature in interface IComplexJunctionFeature
Parameters:
connectionPointIndex - The connectionPointIndex (in)
index - The index (in)
Returns:
A reference to a com.esri.arcgis.geodatabase.IEdgeFeature
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getTopologicalConfiguration

public int getTopologicalConfiguration()
                                throws java.io.IOException,
                                       AutomationException
Description copied from interface: IComplexJunctionFeature
The configuration of this Feature.

Supported Platforms

Windows, Solaris, Linux

Remarks

It is recommended that developers do not use Complex Junctions in their data modeling solutions.  Developers can leverage existing Geodatabase components in order to implement partial functionality, such as IFeatureClassExtension.

Specified by:
getTopologicalConfiguration in interface IComplexJunctionFeature
Returns:
A com.esri.arcgis.geodatabase.esriTopoConfiguration constant
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

setTopologicalConfiguration

public void setTopologicalConfiguration(int configuration)
                                 throws java.io.IOException,
                                        AutomationException
Description copied from interface: IComplexJunctionFeature
The configuration of this Feature.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setTopologicalConfiguration in interface IComplexJunctionFeature
Parameters:
configuration - A com.esri.arcgis.geodatabase.esriTopoConfiguration constant (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setRotationAngle

public void setRotationAngle(double rhs1)
                      throws java.io.IOException,
                             AutomationException
Description copied from interface: IComplexJunctionFeature
The rotation angle of this Feature.

Supported Platforms

Windows, Solaris, Linux

Remarks

It is recommended that developers do not use Complex Junctions in their data modeling solutions.  Developers can leverage existing Geodatabase components in order to implement partial functionality, such as IFeatureClassExtension.

Specified by:
setRotationAngle in interface IComplexJunctionFeature
Parameters:
rhs1 - The rhs1 (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getFieldToEIDMapping

public int getFieldToEIDMapping(int fieldIndex)
                         throws java.io.IOException,
                                AutomationException
Description copied from interface: IComplexJunctionFeature
The EID associated with the specified field index.

Supported Platforms

Windows, Solaris, Linux

Remarks

It is recommended that developers do not use Complex Junctions in their data modeling solutions.  Developers can leverage existing Geodatabase components in order to implement partial functionality, such as IFeatureClassExtension.

Specified by:
getFieldToEIDMapping in interface IComplexJunctionFeature
Parameters:
fieldIndex - The fieldIndex (in)
Returns:
The eID
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getJunctionElementCount

public int getJunctionElementCount()
                            throws java.io.IOException,
                                   AutomationException
Description copied from interface: IComplexJunctionFeature
The number of junctions associated with this Feature.

Supported Platforms

Windows, Solaris, Linux

Remarks

It is recommended that developers do not use Complex Junctions in their data modeling solutions.  Developers can leverage existing Geodatabase components in order to implement partial functionality, such as IFeatureClassExtension.

Specified by:
getJunctionElementCount in interface IComplexJunctionFeature
Returns:
The numJunctions
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

setJunctionElementCount

public void setJunctionElementCount(int numJunctions)
                             throws java.io.IOException,
                                    AutomationException
Description copied from interface: IComplexJunctionFeature
The number of junctions associated with this Feature.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setJunctionElementCount in interface IComplexJunctionFeature
Parameters:
numJunctions - The numJunctions (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

findJunctionEID

public int findJunctionEID(IPoint point)
                    throws java.io.IOException,
                           AutomationException
Description copied from interface: IComplexJunctionFeature
The EID associated with the JunctionElement at the specified point.

Supported Platforms

Windows, Solaris, Linux

Remarks

It is recommended that developers do not use Complex Junctions in their data modeling solutions.  Developers can leverage existing Geodatabase components in order to implement partial functionality, such as IFeatureClassExtension.

Specified by:
findJunctionEID in interface IComplexJunctionFeature
Parameters:
point - A reference to a com.esri.arcgis.geometry.IPoint (in)
Returns:
The junctionEID
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.