Util.java 142 B

1234567
  1. package test;
  2. public interface Util {
  3. public static void testStatic() {
  4. System.out.println("Util.testStatic() called!");
  5. }
  6. }