com.esri.arcgis.geodatabaseextensions
Interface IConstructionBreakPoints

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
IConstructionBreakPointsProxy, ParcelConstructionData

public interface IConstructionBreakPoints
extends java.io.Serializable

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

Description: 'Provides access to members that manipulate the break lines for a parcel construction.' 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 IID1c66cb4e_8950_41b1_8896_e75c173870aa
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void addBreakPoint(int pointNo, int fromPointNo, int toPointNo, double ratio)
          Adds a break point to the parcel construction data.
 void clearBreakPoints()
          Clears all break points.
 void findBreakPoint(int pointNo, int[] fromPointNo, int[] toPointNo, double[] ratio)
          The break point with the matching pointNo.
 void getBreakPoint(int i, int[] pointNo, int[] fromPointNo, int[] toPointNo, double[] ratio)
          The break point at the given index.
 int getBreakPointCount()
          The number of break points for the parcel construction data.
 void removeBreakPoint(int pointNo)
          Remove break point from parcel construction data.
 

Field Detail

IID1c66cb4e_8950_41b1_8896_e75c173870aa

static final int IID1c66cb4e_8950_41b1_8896_e75c173870aa
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

getBreakPointCount

int getBreakPointCount()
                       throws java.io.IOException,
                              AutomationException
The number of break points for the parcel construction data.

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

getBreakPoint

void getBreakPoint(int i,
                   int[] pointNo,
                   int[] fromPointNo,
                   int[] toPointNo,
                   double[] ratio)
                   throws java.io.IOException,
                          AutomationException
The break point at the given index.

Parameters:
i - The i (in)
pointNo - The pointNo (in/out: use single element array)
fromPointNo - The fromPointNo (in/out: use single element array)
toPointNo - The toPointNo (in/out: use single element array)
ratio - The ratio (in/out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

findBreakPoint

void findBreakPoint(int pointNo,
                    int[] fromPointNo,
                    int[] toPointNo,
                    double[] ratio)
                    throws java.io.IOException,
                           AutomationException
The break point with the matching pointNo.

Parameters:
pointNo - The pointNo (in)
fromPointNo - The fromPointNo (in/out: use single element array)
toPointNo - The toPointNo (in/out: use single element array)
ratio - The ratio (in/out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

addBreakPoint

void addBreakPoint(int pointNo,
                   int fromPointNo,
                   int toPointNo,
                   double ratio)
                   throws java.io.IOException,
                          AutomationException
Adds a break point to the parcel construction data.

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

removeBreakPoint

void removeBreakPoint(int pointNo)
                      throws java.io.IOException,
                             AutomationException
Remove break point from parcel construction data.

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

clearBreakPoints

void clearBreakPoints()
                      throws java.io.IOException,
                             AutomationException
Clears all break points.

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