music selection ui layout changed
This commit is contained in:
@@ -15,9 +15,11 @@ public class WavInfo {
|
||||
private DataInputStream readStream;
|
||||
private String fileName;
|
||||
|
||||
private File file;
|
||||
public WavInfo(File file) throws InvalidParameterException {
|
||||
try {
|
||||
fileName = file.getName();
|
||||
this.file = file;
|
||||
audioFile = new FileInputStream(file);
|
||||
initDataStream();
|
||||
getHeaderInfo();
|
||||
@@ -124,4 +126,8 @@ public class WavInfo {
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public File getFile() {
|
||||
return file;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user