com.esri.arcgis.trackinganalyst
Class TxGeoDBFilter

java.lang.Object
  extended by com.esri.arcgis.trackinganalyst.TxGeoDBFilter
All Implemented Interfaces:
com.esri.arcgis.interop.RemoteObjRef, ITxObjectFilter, Serializable

public class TxGeoDBFilter
extends Object
implements com.esri.arcgis.interop.RemoteObjRef, ITxObjectFilter

The TxGeoDBFilter sets up an object filter to be used by CxCatalogDialog.

Description

The TxGeoDBFilter sets up an object filter to be used by CxCatalogDialog. The filter determines if a TxCatalogObject can be chosen or displayed.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Tracking Analyst Extension.

See Also:
Serialized Form

Constructor Summary
TxGeoDBFilter()
          Constructs a TxGeoDBFilter using ArcGIS Engine.
TxGeoDBFilter(Object obj)
          Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
TxGeoDBFilter theTxGeoDBFilter = (TxGeoDBFilter) obj;
 
Method Summary
 boolean canChooseObject(ITxCatalogObject piObject)
          Indicates if the given object can be chosen.
 boolean canDisplayObject(ITxCatalogObject piObject)
          Indicates if the given object can be displayed.
 boolean equals(Object o)
          Compare this object with another
static String getClsid()
          getClsid.
 String getDescription()
          A string that describes what this filter does.
 String getName()
          A user-friendly name identifying this filter.
 int hashCode()
          the hashcode for this object
 
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

TxGeoDBFilter

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

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

TxGeoDBFilter

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

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

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

getName

public String getName()
               throws IOException,
                      AutomationException
A user-friendly name identifying this filter.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Tracking Analyst Extension.

Specified by:
getName in interface ITxObjectFilter
Returns:
The pbstrName
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getDescription

public String getDescription()
                      throws IOException,
                             AutomationException
A string that describes what this filter does.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Tracking Analyst Extension.

Specified by:
getDescription in interface ITxObjectFilter
Returns:
The pbstrDescription
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

canDisplayObject

public boolean canDisplayObject(ITxCatalogObject piObject)
                         throws IOException,
                                AutomationException
Indicates if the given object can be displayed.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Tracking Analyst Extension.

Specified by:
canDisplayObject in interface ITxObjectFilter
Parameters:
piObject - A reference to a com.esri.arcgis.trackinganalyst.ITxCatalogObject (in)
Returns:
The bvarCanDisplay
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

canChooseObject

public boolean canChooseObject(ITxCatalogObject piObject)
                        throws IOException,
                               AutomationException
Indicates if the given object can be chosen.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server. Requires Tracking Analyst Extension.

Specified by:
canChooseObject in interface ITxObjectFilter
Parameters:
piObject - A reference to a com.esri.arcgis.trackinganalyst.ITxCatalogObject (in)
Returns:
The bvarCanChoose
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.