Java Interfce

public interface YourInterface{
  static void yourMethod(){
    System.out.println("Method");
  }
}
Sid Potti