summary refs log tree commit diff stats
path: root/java/code/pkgOne/MyInterface.java
blob: 7196a3dc60f4e53f238e07da8a8590625a78fc34 (plain) (blame)
1
2
3
4
5
6
7
package pkgOne;

public interface MyInterface {
    void methodOne();
    void methodTwo();
    void methodThree();
}