com.esri.arcgis.datasourcesraster
Class TiePointCollection

java.lang.Object
  extended by com.esri.arcgis.datasourcesraster.TiePointCollection
All Implemented Interfaces:
ITiePointCollection, ITiePointOperation, com.esri.arcgis.interop.RemoteObjRef, Serializable

public class TiePointCollection
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, ITiePointCollection, ITiePointOperation

The Image Tie point collection class.

Product Availability

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

See Also:
Serialized Form

Constructor Summary
TiePointCollection()
          Constructs a TiePointCollection using ArcGIS Engine.
TiePointCollection(Object obj)
          Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
TiePointCollection theTiePointCollection = (TiePointCollection) obj;
 
Method Summary
 void add(ITiePoint pPoint)
          Adds an image tie point.
 void addPoints(IImageMatchPoints pMatchPoints)
          Adds a list of match points.
 void append(ITiePoint pPoint)
          Appends an image tie point.
 void compute(Object pCatalog, IQueryFilter pQueryFilter, ITable pTiePoints)
          Computes tiepoints.
 boolean equals(Object o)
          Compare this object with another
static String getClsid()
          getClsid.
 int getCount()
          The image tie point count.
 ITiePoint getPoint(int index)
          The image tie point at the specified position.
 int hashCode()
          the hashcode for this object
 void init(ITable pTiePoints)
          Initializes a tie point collection with a tie point table.
 void insert(int index, ITiePoint pPoint)
          Inserts an image tie point after the specified position.
 void remove(int index)
          Removes the image tie point at the specified position.
 void removeAll()
          Removes all image tie points.
 void replace(int index, ITiePoint pPoint)
          Replaces an image tie point at the specified position.
 void saveTo(ITable pTiePoints)
          Saves all tie points to a given tie point table.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef
getJintegraDispatch, release
 

Constructor Detail

TiePointCollection

public TiePointCollection()
                   throws IOException,
                          UnknownHostException
Constructs a TiePointCollection using ArcGIS Engine.

Throws:
IOException - if there are interop problems
UnknownHostException - if there are interop problems

TiePointCollection

public TiePointCollection(Object obj)
                   throws IOException
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
TiePointCollection theTiePointCollection = (TiePointCollection) obj;

Construct a TiePointCollection using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to TiePointCollection.

Parameters:
obj - an object returned from ArcGIS Engine or Server
Throws:
IOException - if there are interop problems
Method Detail

getClsid

public static String getClsid()
getClsid.


equals

public boolean equals(Object o)
Compare this object with another

Overrides:
equals in class Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class Object

getCount

public int getCount()
             throws IOException,
                    AutomationException
The image tie point count.

Product Availability

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

Specified by:
getCount in interface ITiePointCollection
Returns:
The pCount
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getPoint

public ITiePoint getPoint(int index)
                   throws IOException,
                          AutomationException
The image tie point at the specified position.

Product Availability

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

Specified by:
getPoint in interface ITiePointCollection
Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.datasourcesraster.ITiePoint
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

append

public void append(ITiePoint pPoint)
            throws IOException,
                   AutomationException
Appends an image tie point.

Product Availability

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

Specified by:
append in interface ITiePointCollection
Parameters:
pPoint - A reference to a com.esri.arcgis.datasourcesraster.ITiePoint (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

replace

public void replace(int index,
                    ITiePoint pPoint)
             throws IOException,
                    AutomationException
Replaces an image tie point at the specified position.

Product Availability

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

Specified by:
replace in interface ITiePointCollection
Parameters:
index - The index (in)
pPoint - A reference to a com.esri.arcgis.datasourcesraster.ITiePoint (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

insert

public void insert(int index,
                   ITiePoint pPoint)
            throws IOException,
                   AutomationException
Inserts an image tie point after the specified position.

Product Availability

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

Specified by:
insert in interface ITiePointCollection
Parameters:
index - The index (in)
pPoint - A reference to a com.esri.arcgis.datasourcesraster.ITiePoint (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

remove

public void remove(int index)
            throws IOException,
                   AutomationException
Removes the image tie point at the specified position.

Product Availability

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

Specified by:
remove in interface ITiePointCollection
Parameters:
index - The index (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeAll

public void removeAll()
               throws IOException,
                      AutomationException
Removes all image tie points.

Product Availability

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

Specified by:
removeAll in interface ITiePointCollection
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

add

public void add(ITiePoint pPoint)
         throws IOException,
                AutomationException
Adds an image tie point.

Product Availability

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

Specified by:
add in interface ITiePointCollection
Parameters:
pPoint - A reference to a com.esri.arcgis.datasourcesraster.ITiePoint (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

init

public void init(ITable pTiePoints)
          throws IOException,
                 AutomationException
Initializes a tie point collection with a tie point table.

Product Availability

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

Specified by:
init in interface ITiePointOperation
Parameters:
pTiePoints - A reference to a com.esri.arcgis.geodatabase.ITable (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

saveTo

public void saveTo(ITable pTiePoints)
            throws IOException,
                   AutomationException
Saves all tie points to a given tie point table.

Product Availability

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

Specified by:
saveTo in interface ITiePointOperation
Parameters:
pTiePoints - A reference to a com.esri.arcgis.geodatabase.ITable (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

addPoints

public void addPoints(IImageMatchPoints pMatchPoints)
               throws IOException,
                      AutomationException
Adds a list of match points.

Product Availability

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

Specified by:
addPoints in interface ITiePointOperation
Parameters:
pMatchPoints - A reference to a com.esri.arcgis.datasourcesraster.IImageMatchPoints (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

compute

public void compute(Object pCatalog,
                    IQueryFilter pQueryFilter,
                    ITable pTiePoints)
             throws IOException,
                    AutomationException
Computes tiepoints.

Product Availability

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

Specified by:
compute in interface ITiePointOperation
Parameters:
pCatalog - A reference to another Object (IUnknown) (in)
pQueryFilter - A reference to a com.esri.arcgis.geodatabase.IQueryFilter (in)
pTiePoints - A reference to a com.esri.arcgis.geodatabase.ITable (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.