com.esri.arcgis.trackinganalyst
Class IConditionalAction4Proxy

java.lang.Object
  extended by com.esri.arcgis.interop.Dispatch
      extended by com.esri.arcgis.trackinganalyst.IConditionalAction2Proxy
          extended by com.esri.arcgis.trackinganalyst.IConditionalAction4Proxy
All Implemented Interfaces:
IConditionalAction2, IConditionalAction4, Externalizable, Serializable

public class IConditionalAction4Proxy
extends IConditionalAction2Proxy
implements IConditionalAction4, Serializable

Provides access to properties and methods needed to manage conditional actions.

Description

This interface provides access to properties and methods needed to manage conditional actions. Users can control location and attribute triggers, spatial reference used by the action, test geometry and trigger layer.

Remarks

This interface is new at ArcGIS 9.3. It supersedes IConditionalAction2.

Product Availability

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

See Also:
Serialized Form

Field Summary
 boolean noncastable
           
 
Fields inherited from class com.esri.arcgis.interop.Dispatch
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF, objRef
 
Constructor Summary
  IConditionalAction4Proxy()
           
  IConditionalAction4Proxy(Object obj)
           
protected IConditionalAction4Proxy(Object obj, String iid)
           
 
Method Summary
 void addListener(String iidStr, Object theListener, Object theSource)
           
 ILocationTrigger getLocationTrigger()
          Custom location trigger for the action if one is being used.
 boolean isFavorQuery()
          Indicates if the Attribute Query should be performed first and then the location test.
 void removeListener(String iidStr, Object theListener)
           
 void setFavorQuery(boolean pVal)
          Indicates if the Attribute Query should be performed first and then the location test.
 void setLocationTriggerByRef(ILocationTrigger ppLocationTrigger)
          Custom location trigger for the action if one is being used.
 
Methods inherited from class com.esri.arcgis.trackinganalyst.IConditionalAction2Proxy
getColumnList, getLocationTriggerName, getLocationTriggerType, getPolygonSourceName, getQueryString, getSpatialReference, getTestGeometry, getTriggerLayer, getTriggerLayerName, getTriggerType, isNegateLocationTrigger, setColumnList, setLocationTriggerName, setLocationTriggerType, setNegateLocationTrigger, setPolygonSourceNameByRef, setQueryString, setSpatialReference, setTestGeometry, setTriggerLayerByRef, setTriggerType
 
Methods inherited from class com.esri.arcgis.interop.Dispatch
bindUsingMoniker, constructVtblPosTable, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, getVtblPos, hashCode, initDispatch, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, optimizedVtblInvoke, queryInterface, readExternal, release, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.esri.arcgis.trackinganalyst.IConditionalAction2
getColumnList, getLocationTriggerName, getLocationTriggerType, getPolygonSourceName, getQueryString, getSpatialReference, getTestGeometry, getTriggerLayer, getTriggerLayerName, getTriggerType, isNegateLocationTrigger, setColumnList, setLocationTriggerName, setLocationTriggerType, setNegateLocationTrigger, setPolygonSourceNameByRef, setQueryString, setSpatialReference, setTestGeometry, setTriggerLayerByRef, setTriggerType
 

Field Detail

noncastable

public boolean noncastable
Constructor Detail

IConditionalAction4Proxy

public IConditionalAction4Proxy()

IConditionalAction4Proxy

public IConditionalAction4Proxy(Object obj)
                         throws IOException
Throws:
IOException

IConditionalAction4Proxy

protected IConditionalAction4Proxy(Object obj,
                                   String iid)
                            throws IOException
Throws:
IOException
Method Detail

addListener

public void addListener(String iidStr,
                        Object theListener,
                        Object theSource)
                 throws IOException
Overrides:
addListener in class IConditionalAction2Proxy
Throws:
IOException

removeListener

public void removeListener(String iidStr,
                           Object theListener)
                    throws IOException
Overrides:
removeListener in class IConditionalAction2Proxy
Throws:
IOException

isFavorQuery

public boolean isFavorQuery()
                     throws IOException,
                            AutomationException
Indicates if the Attribute Query should be performed first and then the location test.

Description

Returns and sets whether the attribute query should be performed before the spatial query when evaluating the action.

Remarks

A judicious choice may significantly improve the performance of the query. The rule of thumb for selecting which query to perform first is the one that is likely to exclude the most values. This way the number of times the second query is called is minimized.

Product Availability

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

Specified by:
isFavorQuery in interface IConditionalAction4
Returns:
The pVal
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setFavorQuery

public void setFavorQuery(boolean pVal)
                   throws IOException,
                          AutomationException
Indicates if the Attribute Query should be performed first and then the location test.

Product Availability

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

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

setLocationTriggerByRef

public void setLocationTriggerByRef(ILocationTrigger ppLocationTrigger)
                             throws IOException,
                                    AutomationException
Custom location trigger for the action if one is being used.

Description

Returns or sets the custom location trigger to use with the action. Custom location triggers allow for spatial queries to be performed beyond the default intersects or not intersects. For example, a custom location trigger could evaluate when an event crosses a boundary.

Product Availability

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

Specified by:
setLocationTriggerByRef in interface IConditionalAction4
Parameters:
ppLocationTrigger - A reference to a com.esri.arcgis.trackinganalyst.ILocationTrigger (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getLocationTrigger

public ILocationTrigger getLocationTrigger()
                                    throws IOException,
                                           AutomationException
Custom location trigger for the action if one is being used.

Product Availability

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

Specified by:
getLocationTrigger in interface IConditionalAction4
Returns:
A reference to a com.esri.arcgis.trackinganalyst.ILocationTrigger
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.