Package org.web3d.x3d.sai.eventutilities
Interface BooleanSequencer
- All Superinterfaces:
X3DChildNode
,X3DNode
,X3DSequencerNode
- All Known Implementing Classes:
SAIBooleanSequencer
,SAIBooleanSequencer
Defines the requirements of an X3D BooleanSequencer node
- Version:
- $Revision: 1.1 $
- Author:
- Rex Melton
-
Method Summary
Modifier and TypeMethodDescriptionvoid
getKeyValue
(boolean[] val) Return the keyValue value in the argument boolean[]int
Return the number of MFBool items in the keyValue field.boolean
getValue()
Return the value boolean value.void
setKeyValue
(boolean[] val) Set the keyValue field.Methods inherited from interface org.web3d.x3d.sai.X3DNode
dispose, getField, getFieldDefinitions, getMetadata, getNodeName, getNodeType, isRealized, realize, setMetadata
Methods inherited from interface org.web3d.x3d.sai.X3DSequencerNode
getKey, getNumKey, setFraction, setKey, setNext, setPrevious
-
Method Details
-
getNumKeyValue
int getNumKeyValue()Return the number of MFBool items in the keyValue field.- Returns:
- the number of MFBool items in the keyValue field.
-
getKeyValue
void getKeyValue(boolean[] val) Return the keyValue value in the argument boolean[]- Parameters:
val
- The boolean[] to initialize.
-
setKeyValue
void setKeyValue(boolean[] val) Set the keyValue field.- Parameters:
val
- The boolean[] to set.
-
getValue
boolean getValue()Return the value boolean value.- Returns:
- The value boolean value.
-