home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / sound / sampled / LineEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  1.0 KB  |  31 lines

  1. package javax.sound.sampled;
  2.  
  3. import java.util.EventObject;
  4.  
  5. public class LineEvent extends EventObject {
  6.    private final Type type;
  7.    private final long position;
  8.  
  9.    public LineEvent(Line var1, Type var2, long var3) {
  10.       super(var1);
  11.       this.type = var2;
  12.       this.position = var3;
  13.    }
  14.  
  15.    public final Line getLine() {
  16.       return (Line)((EventObject)this).getSource();
  17.    }
  18.  
  19.    public final Type getType() {
  20.       return this.type;
  21.    }
  22.  
  23.    public final long getFramePosition() {
  24.       return this.position;
  25.    }
  26.  
  27.    public String toString() {
  28.       return new String(this.type.toString() + " event from line " + this.getLine().toString());
  29.    }
  30. }
  31.