Package org.web3d.x3d.sai
Interface X3DSequencerNode
- All Superinterfaces:
X3DChildNode
,X3DNode
- All Known Subinterfaces:
BooleanSequencer
,IntegerSequencer
- All Known Implementing Classes:
SAIBooleanSequencer
,SAIBooleanSequencer
,SAIIntegerSequencer
,SAIIntegerSequencer
Defines the requirements of an X3DSequencerNode abstract node type
- Version:
- $Revision: 1.4 $
- Author:
- Rex Melton
-
Method Summary
Modifier and TypeMethodDescriptionvoid
getKey
(float[] val) Return the key value in the argument float[]int
Return the number of MFFloat items in the key field.void
setFraction
(float val) Set the fraction field.void
setKey
(float[] val) Set the key field.void
setNext
(boolean val) Set the next field.void
setPrevious
(boolean val) Set the previous field.Methods inherited from interface org.web3d.x3d.sai.X3DNode
dispose, getField, getFieldDefinitions, getMetadata, getNodeName, getNodeType, isRealized, realize, setMetadata
-
Method Details
-
setPrevious
void setPrevious(boolean val) Set the previous field.- Parameters:
val
- The boolean to set.
-
setNext
void setNext(boolean val) Set the next field.- Parameters:
val
- The boolean to set.
-
setFraction
void setFraction(float val) Set the fraction field.- Parameters:
val
- The float to set.
-
getNumKey
int getNumKey()Return the number of MFFloat items in the key field.- Returns:
- the number of MFFloat items in the key field.
-
getKey
void getKey(float[] val) Return the key value in the argument float[]- Parameters:
val
- The float[] to initialize.
-
setKey
void setKey(float[] val) Set the key field.- Parameters:
val
- The float[] to set.
-