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 Interface AnInterface.
10 */
11 public interface AnInterface {
12
13 /**
14 * Do something.
15 *
16 * @param s
17 * the s
18 * @param b
19 * the b
20 */
21 void doSomething(String s, boolean b);
22
23 /**
24 * Return value.
25 *
26 * @return the int
27 */
28 int returnValue();
29 }