Uses of Class
sigmlanim.AnimatedSign

Packages that use AnimatedSign
player Provides several signed-animation players: each player combines a JARP avatar canvas with a source of animation data, and provides an API allowing an enclosing GUI container both to control this player and to obtain status information from it in real-time. 
sigmlanim Provides classes supporting the conversion of SiGML to CAS data streams, using a JNI interface to the animgen library. 
sigmlanim.sigmlstream   
sigmlanim.sigmlstream.interfaces   
 

Uses of AnimatedSign in player
 

Methods in player that return AnimatedSign
 AnimatedSign JAFramesPlayer.currentSign()
          Returns the current sign for this player's animation scan, or null if the player currently has no animation scan.
 AnimatedSign AnimationScan.sign()
          Returns the current sign if any, otherwise null.
 AnimatedSign AnimationScan.sign(int s)
          Returns the sign with the given index, assuming this scan has signs, and the index is valid.
 AnimatedSign[] SignsArrayAccess.signs()
          Returns the signs array.
 

Uses of AnimatedSign in sigmlanim
 

Methods in sigmlanim that return AnimatedSign
 AnimatedSign[] SiGMLReader.readFile(java.io.File f)
          Reads SiGML from the given file, converts it to an array of AnimatedSign descriptions, and returns the result.
 AnimatedSign[] SiGMLReader.readFile(java.lang.String path)
          Reads SiGML from the given file path, converts it to an array of AnimatedSign descriptions, and returns the result.
 AnimatedSign[] SiGMLReader.readString(java.lang.String sigmlstr)
          Converts the given SiGML string to an array of AnimatedSign descriptions, and returns the result.
 AnimatedSign[] SiGMLReader.readURL(java.net.URL url)
          Reads SiGML from the given URL, converts it to an array of AnimatedSign descriptions, and returns the result.
 

Methods in sigmlanim with parameters of type AnimatedSign
 SiGMLAnimation SiGMLAnimationGenerator.getAnimationData(JAnimgenConfigData JAG_CONFIG_DATA, AnimatedSign[] asigns)
          Returns the SiGMLAnimation data for the given sequence of Gestural-SiGML signs, performed by the given avatar at the given frame rate, using the given avatar configuration base URL and animgen logging regime.
 void SiGMLAnimation.setNextSign(AnimatedSign as)
          Accepts the given sign (not yet animated) as the next one in this animation.
 

Constructors in sigmlanim with parameters of type AnimatedSign
JAnimgen(JAnimgenConfigData CFG_DATA, AnimatedSign[] ANIM_SIGNS)
          Constructs a new non-streamed Java animgen wrapper with the given configuration data, and runs an animgen thread using the given signs as input and attaching animations to them.
SiGMLAnimation(AnimatedSign[] asigns)
          Constructs a new animation from the given sequence of signs, which are assumed already to have had animation frames attached to them: the animation's frame sequence is constructed from these individual sequences (before this constructor execution completes).
 

Uses of AnimatedSign in sigmlanim.sigmlstream
 

Methods in sigmlanim.sigmlstream that return AnimatedSign
 AnimatedSign SiGMLInputAnimGenCoordinator.getNextSignToBeAnimated()
          Blocks if necessary until sufficent data is available, and then returns the next sign for animation generation, or null if the input sign sequence is known to be exhausted.
 

Uses of AnimatedSign in sigmlanim.sigmlstream.interfaces
 

Methods in sigmlanim.sigmlstream.interfaces that return AnimatedSign
 AnimatedSign StreamedSiGMLSupplierForAnimationGen.getNextSignToBeAnimated()
          Returns next SiGML sign to be animated, or null, if the sign stream is exhausted.
 

Methods in sigmlanim.sigmlstream.interfaces with parameters of type AnimatedSign
 void SiGMLAnimationBuildHandler.setNextSign(AnimatedSign as)
          Notifies this handler that the given sign is the next one in the sequence under construction.