|
||||||||||
| 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.geometry.IBezierCurveGENProxy
OLE automation compatibility interface for IBezierCurve.
| 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 | |
|
IBezierCurveGENProxy()
For internal use only |
|
IBezierCurveGENProxy(java.lang.Object obj)
|
protected |
IBezierCurveGENProxy(java.lang.Object obj,
java.lang.String iid)
|
|
IBezierCurveGENProxy(java.lang.String CLSID,
java.lang.String host,
AuthInfo authInfo)
|
protected |
IBezierCurveGENProxy(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 |
getDegree()
The degree of the Bezier curve. |
void |
putCoord(int index,
IPoint controlPoint)
Sets the specified (0 <= index < 4) control point of this Bezier curve. |
void |
putCoords(IPoint[] controlPoints)
Sets this Bezier curve's control points from an array of between 1 to 4 input points. |
void |
queryChordLengthTangentAtFrom(IPoint tangent,
boolean[] setByUser)
Returns tangent vector at 'from' point, based on chord length parametrization; and whether it has been set by user or by smoothing process. |
void |
queryChordLengthTangentAtTo(IPoint tangent,
boolean[] setByUser)
Returns tangent vector at 'to' point, based on chord length parametrization; and whether it has been set by user or by smoothing process. |
void |
queryCoord(int index,
IPoint controlPoint)
Copies the specified control point of this Bezier curve into the input point. |
void |
queryCoords(IPoint[] controlPoints)
Sets the existing elements of an existing safe array to be equal to the four control points of this bezier curve. |
void |
queryInflectionPoint(IPoint inflectionPoint)
Finds inflection point; sets it empty if none exists. |
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 |
setChordLengthTangentAtFrom(IPoint tangent,
boolean setByUser)
Establishes tangent vector at 'from' point, based on chord length parametrization; and sets flag whether it has been set by user or by smoothing process. |
void |
setChordLengthTangentAtTo(IPoint tangent,
boolean setByUser)
Establishes tangent vector at 'to' point, based on chord length parametrization; and sets flag whether it has been set by user or by smoothing process. |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
public static final java.lang.Class targetClass
| Constructor Detail |
public IBezierCurveGENProxy(java.lang.String CLSID,
java.lang.String host,
AuthInfo authInfo)
throws java.net.UnknownHostException,
java.io.IOException
public IBezierCurveGENProxy()
public IBezierCurveGENProxy(java.lang.Object obj)
throws java.io.IOException
protected IBezierCurveGENProxy(java.lang.Object obj,
java.lang.String iid)
throws java.io.IOException
protected IBezierCurveGENProxy(java.lang.String CLSID,
java.lang.String iid,
java.lang.String host,
AuthInfo authInfo)
throws java.io.IOException
| Method Detail |
public void addListener(java.lang.String iidStr,
java.lang.Object theListener,
java.lang.Object theSource)
throws java.io.IOException
Dispatch
addListener in class DispatchiidStr - the ID of the outgoing interface, implemented by the listenertheListener - the object to be informed of the eventstheSource - the proxy class that represents the COM class that is the source of the events
java.io.IOException
public void removeListener(java.lang.String iidStr,
java.lang.Object theListener)
throws java.io.IOException
Dispatch
removeListener in class DispatchiidStr - the ID of the outgoing interface, implemented by the listenertheListener - the object that no longer wishes to be informed of the events
java.io.IOException
public void queryCoords(IPoint[] controlPoints)
throws java.io.IOException,
AutomationException
IBezierCurveGEN
queryCoords in interface IBezierCurveGENcontrolPoints - A reference to a com.esri.arcgis.geometry.IPoint array (in)
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
public void putCoords(IPoint[] controlPoints)
throws java.io.IOException,
AutomationException
IBezierCurveGENDefines the control points of the bezier curve using an array of four Points. If the array is defined as an array from 0 to 3, then the index of each point corresponds to the control point they represent.
Use PutCoord to set a single control point.

putCoords in interface IBezierCurveGENcontrolPoints - A reference to a com.esri.arcgis.geometry.IPoint array (in)
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
public void queryCoord(int index,
IPoint controlPoint)
throws java.io.IOException,
AutomationException
IBezierCurveGEN
queryCoord in interface IBezierCurveGENindex - The index (in)controlPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
public void putCoord(int index,
IPoint controlPoint)
throws java.io.IOException,
AutomationException
IBezierCurveGEN
putCoord in interface IBezierCurveGENindex - The index (in)controlPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
public int getDegree()
throws java.io.IOException,
AutomationException
IBezierCurveGEN
getDegree in interface IBezierCurveGENAutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
public void queryChordLengthTangentAtFrom(IPoint tangent,
boolean[] setByUser)
throws java.io.IOException,
AutomationException
IBezierCurveGEN
queryChordLengthTangentAtFrom in interface IBezierCurveGENtangent - A reference to a com.esri.arcgis.geometry.IPoint (in)setByUser - The setByUser (in/out: use single element array)
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
public void queryChordLengthTangentAtTo(IPoint tangent,
boolean[] setByUser)
throws java.io.IOException,
AutomationException
IBezierCurveGEN
queryChordLengthTangentAtTo in interface IBezierCurveGENtangent - A reference to a com.esri.arcgis.geometry.IPoint (in)setByUser - The setByUser (in/out: use single element array)
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
public void setChordLengthTangentAtFrom(IPoint tangent,
boolean setByUser)
throws java.io.IOException,
AutomationException
IBezierCurveGEN
setChordLengthTangentAtFrom in interface IBezierCurveGENtangent - A reference to a com.esri.arcgis.geometry.IPoint (in)setByUser - The setByUser (in)
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
public void setChordLengthTangentAtTo(IPoint tangent,
boolean setByUser)
throws java.io.IOException,
AutomationException
IBezierCurveGEN
setChordLengthTangentAtTo in interface IBezierCurveGENtangent - A reference to a com.esri.arcgis.geometry.IPoint (in)setByUser - The setByUser (in)
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
public void queryInflectionPoint(IPoint inflectionPoint)
throws java.io.IOException,
AutomationException
IBezierCurveGEN
queryInflectionPoint in interface IBezierCurveGENinflectionPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||