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 / Control.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  746 b   |  18 lines

  1. package javax.sound.sampled;
  2.  
  3. public abstract class Control {
  4.    private final Type type;
  5.  
  6.    protected Control(Type var1) {
  7.       this.type = var1;
  8.    }
  9.  
  10.    public Type getType() {
  11.       return this.type;
  12.    }
  13.  
  14.    public String toString() {
  15.       return new String(this.getType() + " Control");
  16.    }
  17. }
  18.