1 package integrationTests; 2 3 /** 4 * The Interface AnInterface. 5 */ 6 public interface AnInterface { 7 8 /** 9 * Do something. 10 * 11 * @param s 12 * the s 13 * @param b 14 * the b 15 */ 16 void doSomething(String s, boolean b); 17 18 /** 19 * Return value. 20 * 21 * @return the int 22 */ 23 int returnValue(); 24 }