com.esri.arcgis.geodatabase
Interface IFeatureElement

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
FeatureElement, IFeatureElementProxy

public interface IFeatureElement
extends java.io.Serializable

Provides access to members to return feature element properties.

Product Availability

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

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.


Method Summary
 int getElementType()
          The Type of Feature Element.
 IGeometry getGeometry()
          The Geometry of the Feature Element.
 IFeature getOwner()
          The Feature that owns the Feature Element.
 IFeatureElement getParent()
          The Parent of the Feature Element.
 

Method Detail

getOwner

public IFeature getOwner()
                  throws java.io.IOException,
                         AutomationException
The Feature that owns the Feature Element.

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.

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

getElementType

public int getElementType()
                   throws java.io.IOException,
                          AutomationException
The Type of Feature Element.

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.

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

getGeometry

public IGeometry getGeometry()
                      throws java.io.IOException,
                             AutomationException
The Geometry of the Feature Element.

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.

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

getParent

public IFeatureElement getParent()
                          throws java.io.IOException,
                                 AutomationException
The Parent of the Feature Element.

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.

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