View Javadoc
1   /*
2    * MIT License
3    * Copyright (c) 2006-2025 JMockit developers
4    * See LICENSE file for full license text.
5    */
6   package integration.tests;
7   
8   /**
9    * The Class AbstractClassWithNoExecutableLines.
10   */
11  abstract class AbstractClassWithNoExecutableLines {
12  
13      /** The an int field. */
14      protected int anIntField;
15  
16      /**
17       * Do something.
18       *
19       * @param s
20       *            the s
21       * @param b
22       *            the b
23       */
24      abstract void doSomething(String s, boolean b);
25  
26      /**
27       * Return value.
28       *
29       * @return the int
30       */
31      abstract int returnValue();
32  }