Package org.web3d.x3d.sai
Interface X3DTimeDependentNode
- All Superinterfaces:
X3DChildNode
,X3DNode
- All Known Subinterfaces:
AudioClip
,MovieTexture
,TimeSensor
,X3DSoundSourceNode
- All Known Implementing Classes:
SAIAudioClip
,SAIAudioClip
,SAITimeSensor
,SAITimeSensor
Defines the requirements of an X3DTimeDependentNode abstract node type
- Version:
- $Revision: 1.4 $
- Author:
- Rex Melton
-
Method Summary
Modifier and TypeMethodDescriptiondouble
Return the elapsedTime double value.boolean
Return the isActive boolean value.boolean
Return the isPaused boolean value.boolean
getLoop()
Return the loop boolean value.double
Return the pauseTime double value.double
Return the resumeTime double value.double
Return the startTime double value.double
Return the stopTime double value.void
setLoop
(boolean val) Set the loop field.void
setPauseTime
(double val) Set the pauseTime field.void
setResumeTime
(double val) Set the resumeTime field.void
setStartTime
(double val) Set the startTime field.void
setStopTime
(double val) Set the stopTime field.Methods inherited from interface org.web3d.x3d.sai.X3DNode
dispose, getField, getFieldDefinitions, getMetadata, getNodeName, getNodeType, isRealized, realize, setMetadata
-
Method Details
-
getLoop
boolean getLoop()Return the loop boolean value.- Returns:
- The loop boolean value.
-
setLoop
void setLoop(boolean val) Set the loop field.- Parameters:
val
- The boolean to set.
-
getStartTime
double getStartTime()Return the startTime double value.- Returns:
- The startTime double value.
-
setStartTime
void setStartTime(double val) Set the startTime field.- Parameters:
val
- The double to set.
-
getStopTime
double getStopTime()Return the stopTime double value.- Returns:
- The stopTime double value.
-
setStopTime
void setStopTime(double val) Set the stopTime field.- Parameters:
val
- The double to set.
-
getPauseTime
double getPauseTime()Return the pauseTime double value.- Returns:
- The pauseTime double value.
-
setPauseTime
void setPauseTime(double val) Set the pauseTime field.- Parameters:
val
- The double to set.
-
getResumeTime
double getResumeTime()Return the resumeTime double value.- Returns:
- The resumeTime double value.
-
setResumeTime
void setResumeTime(double val) Set the resumeTime field.- Parameters:
val
- The double to set.
-
getElapsedTime
double getElapsedTime()Return the elapsedTime double value.- Returns:
- The elapsedTime double value.
-
getIsActive
boolean getIsActive()Return the isActive boolean value.- Returns:
- The isActive boolean value.
-
getIsPaused
boolean getIsPaused()Return the isPaused boolean value.- Returns:
- The isPaused boolean value.
-