1 package integrationTests; 2 3 /** 4 * The Class AbstractClassWithNoExecutableLines. 5 */ 6 abstract class AbstractClassWithNoExecutableLines { 7 8 /** The an int field. */ 9 protected int anIntField; 10 11 /** 12 * Do something. 13 * 14 * @param s 15 * the s 16 * @param b 17 * the b 18 */ 19 abstract void doSomething(String s, boolean b); 20 21 /** 22 * Return value. 23 * 24 * @return the int 25 */ 26 abstract int returnValue(); 27 }