com.esri.arcgis.geodatabaseextensions
Interface ICadastralFabricRegeneration

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
CadastralFabricRegenerator, ICadastralFabricRegenerationProxy

public interface ICadastralFabricRegeneration
extends java.io.Serializable

COM Interface 'ICadastralFabricRegeneration'. Generated 3/19/2015 1:21:01 PM from 'C:\ArcGIS\COM\esriGeoDatabaseExtensions.olb'

Description: 'Provides access to members which regenerate the features of an existing parcel fabric' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IID98319c51_d6cf_45c9_b8e7_0cae17d55476
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 ICadastralFabric getCadastralFabric()
          Store the Cadastral Fabric which is to be regenerated
 int getRegeneratorBitmask()
          Store the bitmask defining which operations are to be performed by the regenerator
 void regenerateAllControlPoints(ITrackCancel pTrackCancel)
          Regenerate the geometries of all control points in the fabric.
 void regenerateAllParcels(boolean regeneratePoints, ITrackCancel pTrackCancel)
          Regenerate the geometries of all parcels, lines and linepoints in the fabric.
 void regenerateControlPoints(IFIDSet pControlPointsToRegenerate, ITrackCancel pTrackCancel)
          Regenerate the geometries associated with the input control point ID set.
 void regenerateEntireFabric(ITrackCancel pTrackCancel)
          Regenerate the geometries of the entire fabric.
 void regenerateMissingPoints(ITrackCancel pTrackCancel)
          Regenerate point features which have been removed from the database.
 void regenerateParcels(IFIDSet pParcelsToRegenerate, boolean regeneratePoints, ITrackCancel pTrackCancel)
          Regenerate the geometries of parcels, lines and linepoints associated with the input parcel ID set.
 void setCadastralFabricByRef(ICadastralFabric ppCadastralFabric)
          Store the Cadastral Fabric which is to be regenerated
 void setRegeneratorBitmask(int pRegeneratorBitmask)
          Store the bitmask defining which operations are to be performed by the regenerator
 

Field Detail

IID98319c51_d6cf_45c9_b8e7_0cae17d55476

static final int IID98319c51_d6cf_45c9_b8e7_0cae17d55476
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

setCadastralFabricByRef

void setCadastralFabricByRef(ICadastralFabric ppCadastralFabric)
                             throws java.io.IOException,
                                    AutomationException
Store the Cadastral Fabric which is to be regenerated

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

getCadastralFabric

ICadastralFabric getCadastralFabric()
                                    throws java.io.IOException,
                                           AutomationException
Store the Cadastral Fabric which is to be regenerated

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

setRegeneratorBitmask

void setRegeneratorBitmask(int pRegeneratorBitmask)
                           throws java.io.IOException,
                                  AutomationException
Store the bitmask defining which operations are to be performed by the regenerator

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

getRegeneratorBitmask

int getRegeneratorBitmask()
                          throws java.io.IOException,
                                 AutomationException
Store the bitmask defining which operations are to be performed by the regenerator

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

regenerateParcels

void regenerateParcels(IFIDSet pParcelsToRegenerate,
                       boolean regeneratePoints,
                       ITrackCancel pTrackCancel)
                       throws java.io.IOException,
                              AutomationException
Regenerate the geometries of parcels, lines and linepoints associated with the input parcel ID set.

Parameters:
pParcelsToRegenerate - A reference to a com.esri.arcgis.geodatabase.IFIDSet (in)
regeneratePoints - The regeneratePoints (in)
pTrackCancel - A reference to a com.esri.arcgis.system.ITrackCancel (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

regenerateAllParcels

void regenerateAllParcels(boolean regeneratePoints,
                          ITrackCancel pTrackCancel)
                          throws java.io.IOException,
                                 AutomationException
Regenerate the geometries of all parcels, lines and linepoints in the fabric.

Parameters:
regeneratePoints - The regeneratePoints (in)
pTrackCancel - A reference to a com.esri.arcgis.system.ITrackCancel (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

regenerateControlPoints

void regenerateControlPoints(IFIDSet pControlPointsToRegenerate,
                             ITrackCancel pTrackCancel)
                             throws java.io.IOException,
                                    AutomationException
Regenerate the geometries associated with the input control point ID set.

Parameters:
pControlPointsToRegenerate - A reference to a com.esri.arcgis.geodatabase.IFIDSet (in)
pTrackCancel - A reference to a com.esri.arcgis.system.ITrackCancel (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

regenerateAllControlPoints

void regenerateAllControlPoints(ITrackCancel pTrackCancel)
                                throws java.io.IOException,
                                       AutomationException
Regenerate the geometries of all control points in the fabric.

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

regenerateEntireFabric

void regenerateEntireFabric(ITrackCancel pTrackCancel)
                            throws java.io.IOException,
                                   AutomationException
Regenerate the geometries of the entire fabric.

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

regenerateMissingPoints

void regenerateMissingPoints(ITrackCancel pTrackCancel)
                             throws java.io.IOException,
                                    AutomationException
Regenerate point features which have been removed from the database.

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