com.esri.arcgis.analyst3d
Interface IAnimationTracks

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
Globe, IAnimationTracksProxy, Scene

public interface IAnimationTracks
extends java.io.Serializable

COM Interface 'IAnimationTracks'. Generated 3/19/2015 1:20:51 PM from 'C:\ArcGIS\COM\esri3DAnalyst.olb'

Description: 'Provides access to members that control the scene animation tracks.' 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 IIDfa3dba5b_a879_11d5_b2a0_00508bcdde28
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void addTrack(IAnimationTrack pTrack)
          Adds a track to the collection.
 void applyTracks(ISceneViewer pViewer, double time, double duration)
          Plays the enabled animation tracks in the given viewer (in all if null).
 void changePriority(IAnimationTrack pTrack, boolean bAbsolute, boolean bInSameType, int changeInIndex)
          Changes the priority (index) of the track.
 void detachObject(java.lang.Object pObject)
          Detach an object from all tracks it is attached to.
 void findTrack(java.lang.String name, IAnimationTrack[] ppTrack)
          Finds a track by name.
 IArray getAnimationTypes()
          The objects that describe the registered types of animation.
 int getTrackCount()
          The number of tracks.
 IArray getTracks()
          The animation tracks.
 IArray getTracksOfType(IAnimationType pType)
          The animation tracks of a given type.
 void loadTracks(IStream pStm)
          Load the animation tracks from a stream.
 void refreshAttachedObjects()
          Detaches from the tracks those objects that no longer exist.
 void removeAllTracks()
          Removes all tracks.
 void removeTrack(IAnimationTrack pTrack)
          Removes a track from the collection.
 void saveTracks(IStream pStm)
          Save the animation tracks to a stream.
 

Field Detail

IIDfa3dba5b_a879_11d5_b2a0_00508bcdde28

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

getAnimationTypes

IArray getAnimationTypes()
                         throws java.io.IOException,
                                AutomationException
The objects that describe the registered types of animation.

Returns:
A reference to a com.esri.arcgis.system.IArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getTrackCount

int getTrackCount()
                  throws java.io.IOException,
                         AutomationException
The number of tracks.

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

getTracks

IArray getTracks()
                 throws java.io.IOException,
                        AutomationException
The animation tracks.

Returns:
A reference to a com.esri.arcgis.system.IArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getTracksOfType

IArray getTracksOfType(IAnimationType pType)
                       throws java.io.IOException,
                              AutomationException
The animation tracks of a given type.

Parameters:
pType - A reference to a com.esri.arcgis.analyst3d.IAnimationType (in)
Returns:
A reference to a com.esri.arcgis.system.IArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

addTrack

void addTrack(IAnimationTrack pTrack)
              throws java.io.IOException,
                     AutomationException
Adds a track to the collection.

Parameters:
pTrack - A reference to a com.esri.arcgis.analyst3d.IAnimationTrack (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

findTrack

void findTrack(java.lang.String name,
               IAnimationTrack[] ppTrack)
               throws java.io.IOException,
                      AutomationException
Finds a track by name.

Parameters:
name - The name (in)
ppTrack - A reference to a com.esri.arcgis.analyst3d.IAnimationTrack (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeTrack

void removeTrack(IAnimationTrack pTrack)
                 throws java.io.IOException,
                        AutomationException
Removes a track from the collection.

Parameters:
pTrack - A reference to a com.esri.arcgis.analyst3d.IAnimationTrack (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeAllTracks

void removeAllTracks()
                     throws java.io.IOException,
                            AutomationException
Removes all tracks.

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

saveTracks

void saveTracks(IStream pStm)
                throws java.io.IOException,
                       AutomationException
Save the animation tracks to a stream.

Parameters:
pStm - A reference to a com.esri.arcgis.system.IStream (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

loadTracks

void loadTracks(IStream pStm)
                throws java.io.IOException,
                       AutomationException
Load the animation tracks from a stream.

Parameters:
pStm - A reference to a com.esri.arcgis.system.IStream (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

detachObject

void detachObject(java.lang.Object pObject)
                  throws java.io.IOException,
                         AutomationException
Detach an object from all tracks it is attached to.

Parameters:
pObject - A reference to another Object (IUnknown) (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

refreshAttachedObjects

void refreshAttachedObjects()
                            throws java.io.IOException,
                                   AutomationException
Detaches from the tracks those objects that no longer exist.

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

applyTracks

void applyTracks(ISceneViewer pViewer,
                 double time,
                 double duration)
                 throws java.io.IOException,
                        AutomationException
Plays the enabled animation tracks in the given viewer (in all if null).

Parameters:
pViewer - A reference to a com.esri.arcgis.analyst3d.ISceneViewer (in)
time - The time (in)
duration - The duration (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

changePriority

void changePriority(IAnimationTrack pTrack,
                    boolean bAbsolute,
                    boolean bInSameType,
                    int changeInIndex)
                    throws java.io.IOException,
                           AutomationException
Changes the priority (index) of the track.

Parameters:
pTrack - A reference to a com.esri.arcgis.analyst3d.IAnimationTrack (in)
bAbsolute - The bAbsolute (in)
bInSameType - The bInSameType (in)
changeInIndex - The changeInIndex (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.