com.esri.arcgis.analyst3d
Class IAnimationTrackProxy

java.lang.Object
  extended bycom.esri.arcgis.interop.Dispatch
      extended bycom.esri.arcgis.analyst3d.IAnimationTrackProxy
All Implemented Interfaces:
java.io.Externalizable, IAnimationTrack, java.io.Serializable

public class IAnimationTrackProxy
extends Dispatch
implements IAnimationTrack, java.io.Serializable

Provides access to animation tracks.

Product Availability

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

See Also:
Serialized Form

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
  IAnimationTrackProxy()
          For internal use only
  IAnimationTrackProxy(java.lang.Object obj)
           
protected IAnimationTrackProxy(java.lang.Object obj, java.lang.String iid)
           
  IAnimationTrackProxy(java.lang.String CLSID, java.lang.String host, AuthInfo authInfo)
           
protected IAnimationTrackProxy(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.
 void attachObject(java.lang.Object pObject)
          Attach object to the track.
 void detachAllObjects()
          Detach all objects from the track.
 void detachObject(java.lang.Object pObject)
          Detach object from the track.
 void findKeyframe(java.lang.String name, IKeyframe[] ppKeyframe)
          Finds a keyframe by name.
 ILongArray getActiveProperties()
          The combination of active properties for the track.
 IAnimationType getAnimationType()
          The animation type.
 IArray getAttachedObjects()
          The objects to which the track is attached, or null.
 int getAttachedObjectsCount()
          The number of objects to which the track is attached.
 double getBeginTime()
          The initial time of the track.
 double getEndTime()
          The final time of the track.
 IKeyframe getKeyframe(int index)
          The keyframe with the given index in the track.
 int getKeyframeCount()
          The number of keyframes defined in the track.
 java.lang.String getName()
          The name of the track.
 void insertKeyframe(IKeyframe pKeyframe, int index)
          Inserts a new keyframe.
 void interpolateObjectProperties(IScene pScene, double time)
          Interpolates the state of the attached object for a time between BeginTime and Endtime.
 boolean isActiveProperty(int propIndex)
          Indicates if an animation property is active.
 boolean isApplyToAllViewers()
          Indicates whether to apply a camera track to all scene viewers.
 boolean isAttached(java.lang.Object pObject)
          Indicates if the given objects is attached to the track.
 boolean isCycle()
          Indicates if the track is repeated periodically.
 boolean isEnabled()
          Indicates if the track is enabled.
 boolean isEvenTimeStamps()
          Indicates whether to distribute time stamps evenly in the interval 0-1.
 void moveKeyframe(int originIndex, int destinationIndex)
          Moves the keyframe with the given index, inserting it with a different index.
 void removeAllKeyframes()
          Removes all the keyframes.
 void removeKeyframe(int index)
          Removes the keyframe with the given index.
 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 resetAttachedObjects(IScene pScene)
          Reset the state of the attached objects to be ready for animation.
 void resetTimeStamps()
          Redistributes the time stamps in the interval [0,1].
 void restoreObjectProperties(IScene pScene, int index)
          Restores the saved properties of the attached object specified.
 void saveObjectProperties(IScene pScene, int index)
          Internally saves the properties of the attached object specified.
 void setActiveProperties(ILongArray ppActiveProps)
          The combination of active properties for the track.
 void setAnimationTypeByRef(IAnimationType ppAnimationType)
          The animation type.
 void setApplyToAllViewers(boolean pbApplyToAllViewers)
          Indicates whether to apply a camera track to all scene viewers.
 void setAttachedObjects(IArray ppObjectArray)
          The objects to which the track is attached, or null.
 void setBeginTime(double pBeginTime)
          The initial time of the track.
 void setEndTime(double pEndTime)
          The final time of the track.
 void setEvenTimeStamps(boolean pbEvenTimeStamps)
          Indicates whether to distribute time stamps evenly in the interval 0-1.
 void setIsActiveProperty(int propIndex, boolean pbIsActiveProp)
          Indicates if an animation property is active.
 void setIsCycle(boolean pbIsCycle)
          Indicates if the track is repeated periodically.
 void setIsEnabled(boolean pbIsEnabled)
          Indicates if the track is enabled.
 void setName(java.lang.String name)
          The name of the track.
 void sortKeyframes()
          Sorts the keyframes in ascending time order.
 
Methods inherited from class com.esri.arcgis.interop.Dispatch
bindUsingMoniker, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, hashCode, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, queryInterface, readExternal, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

targetClass

public static final java.lang.Class targetClass
Constructor Detail

IAnimationTrackProxy

public IAnimationTrackProxy(java.lang.String CLSID,
                            java.lang.String host,
                            AuthInfo authInfo)
                     throws java.net.UnknownHostException,
                            java.io.IOException

IAnimationTrackProxy

public IAnimationTrackProxy()
For internal use only


IAnimationTrackProxy

public IAnimationTrackProxy(java.lang.Object obj)
                     throws java.io.IOException

IAnimationTrackProxy

protected IAnimationTrackProxy(java.lang.Object obj,
                               java.lang.String iid)
                        throws java.io.IOException

IAnimationTrackProxy

protected IAnimationTrackProxy(java.lang.String CLSID,
                               java.lang.String iid,
                               java.lang.String host,
                               AuthInfo authInfo)
                        throws java.io.IOException
Method Detail

addListener

public void addListener(java.lang.String iidStr,
                        java.lang.Object theListener,
                        java.lang.Object theSource)
                 throws java.io.IOException
Description copied from class: Dispatch
Adds a Java object to be a listener for a specific kind of event generated by the COM object. when you wish to invoke method on the COM object using IDispatch (not using custom marshalling).

Overrides:
addListener in class Dispatch
Parameters:
iidStr - the ID of the outgoing interface, implemented by the listener
theListener - the object to be informed of the events
theSource - the proxy class that represents the COM class that is the source of the events
Throws:
java.io.IOException

removeListener

public void removeListener(java.lang.String iidStr,
                           java.lang.Object theListener)
                    throws java.io.IOException
Description copied from class: Dispatch
Removes a Java object as a listener to events generated by a COM object. when you wish to invoke method on the COM object using IDispatch (not using custom marshalling).

Overrides:
removeListener in class Dispatch
Parameters:
iidStr - the ID of the outgoing interface, implemented by the listener
theListener - the object that no longer wishes to be informed of the events
Throws:
java.io.IOException

getActiveProperties

public ILongArray getActiveProperties()
                               throws java.io.IOException,
                                      AutomationException
Description copied from interface: IAnimationTrack
The combination of active properties for the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
getActiveProperties in interface IAnimationTrack
Returns:
A reference to a com.esri.arcgis.system.ILongArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setActiveProperties

public void setActiveProperties(ILongArray ppActiveProps)
                         throws java.io.IOException,
                                AutomationException
Description copied from interface: IAnimationTrack
The combination of active properties for the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setActiveProperties in interface IAnimationTrack
Parameters:
ppActiveProps - A reference to a com.esri.arcgis.system.ILongArray (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

isActiveProperty

public boolean isActiveProperty(int propIndex)
                         throws java.io.IOException,
                                AutomationException
Description copied from interface: IAnimationTrack
Indicates if an animation property is active.

Specified by:
isActiveProperty in interface IAnimationTrack
Parameters:
propIndex - The propIndex (in)
Returns:
The pbIsActiveProp
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setIsActiveProperty

public void setIsActiveProperty(int propIndex,
                                boolean pbIsActiveProp)
                         throws java.io.IOException,
                                AutomationException
Description copied from interface: IAnimationTrack
Indicates if an animation property is active.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setIsActiveProperty in interface IAnimationTrack
Parameters:
propIndex - The propIndex (in)
pbIsActiveProp - The pbIsActiveProp (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getName

public java.lang.String getName()
                         throws java.io.IOException,
                                AutomationException
Description copied from interface: IAnimationTrack
The name of the track.

Supported Platforms

Windows, Solaris, Linux

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

setName

public void setName(java.lang.String name)
             throws java.io.IOException,
                    AutomationException
Description copied from interface: IAnimationTrack
The name of the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setName in interface IAnimationTrack
Parameters:
name - The name (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getAnimationType

public IAnimationType getAnimationType()
                                throws java.io.IOException,
                                       AutomationException
Description copied from interface: IAnimationTrack
The animation type.

Supported Platforms

Windows, Solaris, Linux

Specified by:
getAnimationType in interface IAnimationTrack
Returns:
A reference to a com.esri.arcgis.analyst3d.IAnimationType
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setAnimationTypeByRef

public void setAnimationTypeByRef(IAnimationType ppAnimationType)
                           throws java.io.IOException,
                                  AutomationException
Description copied from interface: IAnimationTrack
The animation type.

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

getKeyframeCount

public int getKeyframeCount()
                     throws java.io.IOException,
                            AutomationException
Description copied from interface: IAnimationTrack
The number of keyframes defined in the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
getKeyframeCount in interface IAnimationTrack
Returns:
The pKeyframeCount
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getKeyframe

public IKeyframe getKeyframe(int index)
                      throws java.io.IOException,
                             AutomationException
Description copied from interface: IAnimationTrack
The keyframe with the given index in the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
getKeyframe in interface IAnimationTrack
Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.analyst3d.IKeyframe
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isCycle

public boolean isCycle()
                throws java.io.IOException,
                       AutomationException
Description copied from interface: IAnimationTrack
Indicates if the track is repeated periodically.

Specified by:
isCycle in interface IAnimationTrack
Returns:
The pbIsCycle
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setIsCycle

public void setIsCycle(boolean pbIsCycle)
                throws java.io.IOException,
                       AutomationException
Description copied from interface: IAnimationTrack
Indicates if the track is repeated periodically.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setIsCycle in interface IAnimationTrack
Parameters:
pbIsCycle - The pbIsCycle (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getBeginTime

public double getBeginTime()
                    throws java.io.IOException,
                           AutomationException
Description copied from interface: IAnimationTrack
The initial time of the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
getBeginTime in interface IAnimationTrack
Returns:
The pBeginTime
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

setBeginTime

public void setBeginTime(double pBeginTime)
                  throws java.io.IOException,
                         AutomationException
Description copied from interface: IAnimationTrack
The initial time of the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setBeginTime in interface IAnimationTrack
Parameters:
pBeginTime - The pBeginTime (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getEndTime

public double getEndTime()
                  throws java.io.IOException,
                         AutomationException
Description copied from interface: IAnimationTrack
The final time of the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
getEndTime in interface IAnimationTrack
Returns:
The pEndTime
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setEndTime

public void setEndTime(double pEndTime)
                throws java.io.IOException,
                       AutomationException
Description copied from interface: IAnimationTrack
The final time of the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setEndTime in interface IAnimationTrack
Parameters:
pEndTime - The pEndTime (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

isEnabled

public boolean isEnabled()
                  throws java.io.IOException,
                         AutomationException
Description copied from interface: IAnimationTrack
Indicates if the track is enabled.

Specified by:
isEnabled in interface IAnimationTrack
Returns:
The pbIsEnabled
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

setIsEnabled

public void setIsEnabled(boolean pbIsEnabled)
                  throws java.io.IOException,
                         AutomationException
Description copied from interface: IAnimationTrack
Indicates if the track is enabled.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setIsEnabled in interface IAnimationTrack
Parameters:
pbIsEnabled - The pbIsEnabled (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setEvenTimeStamps

public void setEvenTimeStamps(boolean pbEvenTimeStamps)
                       throws java.io.IOException,
                              AutomationException
Description copied from interface: IAnimationTrack
Indicates whether to distribute time stamps evenly in the interval 0-1.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setEvenTimeStamps in interface IAnimationTrack
Parameters:
pbEvenTimeStamps - The pbEvenTimeStamps (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

isEvenTimeStamps

public boolean isEvenTimeStamps()
                         throws java.io.IOException,
                                AutomationException
Description copied from interface: IAnimationTrack
Indicates whether to distribute time stamps evenly in the interval 0-1.

Supported Platforms

Windows, Solaris, Linux

Specified by:
isEvenTimeStamps in interface IAnimationTrack
Returns:
The pbEvenTimeStamps
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setApplyToAllViewers

public void setApplyToAllViewers(boolean pbApplyToAllViewers)
                          throws java.io.IOException,
                                 AutomationException
Description copied from interface: IAnimationTrack
Indicates whether to apply a camera track to all scene viewers.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setApplyToAllViewers in interface IAnimationTrack
Parameters:
pbApplyToAllViewers - The pbApplyToAllViewers (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

isApplyToAllViewers

public boolean isApplyToAllViewers()
                            throws java.io.IOException,
                                   AutomationException
Description copied from interface: IAnimationTrack
Indicates whether to apply a camera track to all scene viewers.

Supported Platforms

Windows, Solaris, Linux

Specified by:
isApplyToAllViewers in interface IAnimationTrack
Returns:
The pbApplyToAllViewers
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getAttachedObjectsCount

public int getAttachedObjectsCount()
                            throws java.io.IOException,
                                   AutomationException
Description copied from interface: IAnimationTrack
The number of objects to which the track is attached.

Supported Platforms

Windows, Solaris, Linux

Specified by:
getAttachedObjectsCount in interface IAnimationTrack
Returns:
The pObjectCount
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getAttachedObjects

public IArray getAttachedObjects()
                          throws java.io.IOException,
                                 AutomationException
Description copied from interface: IAnimationTrack
The objects to which the track is attached, or null.

Supported Platforms

Windows, Solaris, Linux

Specified by:
getAttachedObjects in interface IAnimationTrack
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.

isAttached

public boolean isAttached(java.lang.Object pObject)
                   throws java.io.IOException,
                          AutomationException
Description copied from interface: IAnimationTrack
Indicates if the given objects is attached to the track.

Specified by:
isAttached in interface IAnimationTrack
Parameters:
pObject - A reference to another Object (IUnknown) (in)
Returns:
The pbIsAttached
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setAttachedObjects

public void setAttachedObjects(IArray ppObjectArray)
                        throws java.io.IOException,
                               AutomationException
Description copied from interface: IAnimationTrack
The objects to which the track is attached, or null.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setAttachedObjects in interface IAnimationTrack
Parameters:
ppObjectArray - A reference to a com.esri.arcgis.system.IArray (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

attachObject

public void attachObject(java.lang.Object pObject)
                  throws java.io.IOException,
                         AutomationException
Description copied from interface: IAnimationTrack
Attach object to the track.

Supported Platforms

Windows, Solaris, Linux

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

detachObject

public void detachObject(java.lang.Object pObject)
                  throws java.io.IOException,
                         AutomationException
Description copied from interface: IAnimationTrack
Detach object from the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
detachObject in interface IAnimationTrack
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.

detachAllObjects

public void detachAllObjects()
                      throws java.io.IOException,
                             AutomationException
Description copied from interface: IAnimationTrack
Detach all objects from the track.

Supported Platforms

Windows, Solaris, Linux

Specified by:
detachAllObjects in interface IAnimationTrack
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

resetAttachedObjects

public void resetAttachedObjects(IScene pScene)
                          throws java.io.IOException,
                                 AutomationException
Description copied from interface: IAnimationTrack
Reset the state of the attached objects to be ready for animation.

Supported Platforms

Windows, Solaris, Linux

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

insertKeyframe

public void insertKeyframe(IKeyframe pKeyframe,
                           int index)
                    throws java.io.IOException,
                           AutomationException
Description copied from interface: IAnimationTrack
Inserts a new keyframe. If the index is -1, it is added last.

Supported Platforms

Windows, Solaris, Linux

Specified by:
insertKeyframe in interface IAnimationTrack
Parameters:
pKeyframe - A reference to a com.esri.arcgis.analyst3d.IKeyframe (in)
index - The index (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

removeKeyframe

public void removeKeyframe(int index)
                    throws java.io.IOException,
                           AutomationException
Description copied from interface: IAnimationTrack
Removes the keyframe with the given index.

Supported Platforms

Windows, Solaris, Linux

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

removeAllKeyframes

public void removeAllKeyframes()
                        throws java.io.IOException,
                               AutomationException
Description copied from interface: IAnimationTrack
Removes all the keyframes.

Supported Platforms

Windows, Solaris, Linux

Specified by:
removeAllKeyframes in interface IAnimationTrack
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

findKeyframe

public void findKeyframe(java.lang.String name,
                         IKeyframe[] ppKeyframe)
                  throws java.io.IOException,
                         AutomationException
Description copied from interface: IAnimationTrack
Finds a keyframe by name.

Supported Platforms

Windows, Solaris, Linux

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

moveKeyframe

public void moveKeyframe(int originIndex,
                         int destinationIndex)
                  throws java.io.IOException,
                         AutomationException
Description copied from interface: IAnimationTrack
Moves the keyframe with the given index, inserting it with a different index.

Supported Platforms

Windows, Solaris, Linux

Specified by:
moveKeyframe in interface IAnimationTrack
Parameters:
originIndex - The originIndex (in)
destinationIndex - The destinationIndex (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

sortKeyframes

public void sortKeyframes()
                   throws java.io.IOException,
                          AutomationException
Description copied from interface: IAnimationTrack
Sorts the keyframes in ascending time order.

Supported Platforms

Windows, Solaris, Linux

Specified by:
sortKeyframes in interface IAnimationTrack
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

resetTimeStamps

public void resetTimeStamps()
                     throws java.io.IOException,
                            AutomationException
Description copied from interface: IAnimationTrack
Redistributes the time stamps in the interval [0,1].

Supported Platforms

Windows, Solaris, Linux

Specified by:
resetTimeStamps in interface IAnimationTrack
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

saveObjectProperties

public void saveObjectProperties(IScene pScene,
                                 int index)
                          throws java.io.IOException,
                                 AutomationException
Description copied from interface: IAnimationTrack
Internally saves the properties of the attached object specified.

Supported Platforms

Windows, Solaris, Linux

Specified by:
saveObjectProperties in interface IAnimationTrack
Parameters:
pScene - A reference to a com.esri.arcgis.analyst3d.IScene (in)
index - The index (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

restoreObjectProperties

public void restoreObjectProperties(IScene pScene,
                                    int index)
                             throws java.io.IOException,
                                    AutomationException
Description copied from interface: IAnimationTrack
Restores the saved properties of the attached object specified.

Supported Platforms

Windows, Solaris, Linux

Specified by:
restoreObjectProperties in interface IAnimationTrack
Parameters:
pScene - A reference to a com.esri.arcgis.analyst3d.IScene (in)
index - The index (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

interpolateObjectProperties

public void interpolateObjectProperties(IScene pScene,
                                        double time)
                                 throws java.io.IOException,
                                        AutomationException
Description copied from interface: IAnimationTrack
Interpolates the state of the attached object for a time between BeginTime and Endtime.

Supported Platforms

Windows, Solaris, Linux

Specified by:
interpolateObjectProperties in interface IAnimationTrack
Parameters:
pScene - A reference to a com.esri.arcgis.analyst3d.IScene (in)
time - The time (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.