blob: febe5617ac55308d43725587c2fa106cfe1910a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package TP4;
public interface IelementAudio {
public int getLength();
public void setLength(int length);
public String getName();
public void setName(String name);
public String getPath();
public void setPath(String path);
public int getSize();
public void setSize() throws SecurityException;
}
|