Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.anotherbigidea.flash.structs
Class SoundInfo  view SoundInfo download SoundInfo.java

java.lang.Object
  extended bycom.anotherbigidea.flash.structs.SoundInfo

public class SoundInfo
extends java.lang.Object

A Sound Information structure - defines playback style and envelope


Nested Class Summary
static class SoundInfo.EnvelopePoint
          A Point in a sound envelope
 
Field Summary
protected  SoundInfo.EnvelopePoint[] envelope
           
protected  int inPoint
           
protected  int loopCount
           
protected  boolean noMultiplePlay
           
protected  int outPoint
           
protected  boolean stopPlaying
           
 
Constructor Summary
SoundInfo(boolean noMultiplePlay, boolean stopSound, SoundInfo.EnvelopePoint[] envelope, int inPoint, int outPoint, int loopCount)
           
SoundInfo(com.anotherbigidea.io.InStream in)
           
 
Method Summary
 SoundInfo.EnvelopePoint[] getEnvelope()
           
 int getInPoint()
           
 int getLoopCount()
           
 int getOutPoint()
           
 boolean isNoMultiplePlay()
           
 boolean isStopPlaying()
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 void write(com.anotherbigidea.io.OutStream out)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

noMultiplePlay

protected boolean noMultiplePlay

stopPlaying

protected boolean stopPlaying

envelope

protected SoundInfo.EnvelopePoint[] envelope

inPoint

protected int inPoint

outPoint

protected int outPoint

loopCount

protected int loopCount
Constructor Detail

SoundInfo

public SoundInfo(boolean noMultiplePlay,
                 boolean stopSound,
                 SoundInfo.EnvelopePoint[] envelope,
                 int inPoint,
                 int outPoint,
                 int loopCount)

SoundInfo

public SoundInfo(com.anotherbigidea.io.InStream in)
          throws java.io.IOException
Method Detail

isNoMultiplePlay

public boolean isNoMultiplePlay()

isStopPlaying

public boolean isStopPlaying()

getEnvelope

public SoundInfo.EnvelopePoint[] getEnvelope()

getInPoint

public int getInPoint()

getOutPoint

public int getOutPoint()

getLoopCount

public int getLoopCount()

write

public void write(com.anotherbigidea.io.OutStream out)
           throws java.io.IOException

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).