initial commit
This commit is contained in:
13
src/sound/Format.java
Normal file
13
src/sound/Format.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package sound;
|
||||
|
||||
import javax.sound.sampled.AudioFormat;
|
||||
|
||||
public interface Format extends Cloneable {
|
||||
public interface Standard extends Format {
|
||||
public AudioFormat getAudioFormat();
|
||||
}
|
||||
|
||||
public interface Mp3 extends Format {
|
||||
public int getRate();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user