|
3 | 3 | import org.apiguardian.api.API;
|
4 | 4 |
|
5 | 5 | @API(status = API.Status.STABLE)
|
6 |
| -public interface StepdefBody { |
| 6 | +public interface StepDefinitionBody { |
7 | 7 | @FunctionalInterface
|
8 |
| - interface A0 extends StepdefBody { |
| 8 | + interface A0 extends StepDefinitionBody { |
9 | 9 | void accept() throws Throwable;
|
10 | 10 | }
|
11 | 11 | @FunctionalInterface
|
12 |
| - interface A1<T1> extends StepdefBody { |
| 12 | + interface A1<T1> extends StepDefinitionBody { |
13 | 13 | void accept(T1 p1) throws Throwable;
|
14 | 14 | }
|
15 | 15 | @FunctionalInterface
|
16 |
| - interface A2<T1, T2> extends StepdefBody { |
| 16 | + interface A2<T1, T2> extends StepDefinitionBody { |
17 | 17 | void accept(T1 p1, T2 p2) throws Throwable;
|
18 | 18 | }
|
19 | 19 | @FunctionalInterface
|
20 |
| - interface A3<T1, T2, T3> extends StepdefBody { |
| 20 | + interface A3<T1, T2, T3> extends StepDefinitionBody { |
21 | 21 | void accept(T1 p1, T2 p2, T3 p3) throws Throwable;
|
22 | 22 | }
|
23 | 23 | @FunctionalInterface
|
24 |
| - interface A4<T1, T2, T3, T4> extends StepdefBody { |
| 24 | + interface A4<T1, T2, T3, T4> extends StepDefinitionBody { |
25 | 25 | void accept(T1 p1, T2 p2, T3 p3, T4 p4) throws Throwable;
|
26 | 26 | }
|
27 | 27 | @FunctionalInterface
|
28 |
| - interface A5<T1, T2, T3, T4, T5> extends StepdefBody { |
| 28 | + interface A5<T1, T2, T3, T4, T5> extends StepDefinitionBody { |
29 | 29 | void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) throws Throwable;
|
30 | 30 | }
|
31 | 31 | @FunctionalInterface
|
32 |
| - interface A6<T1, T2, T3, T4, T5, T6> extends StepdefBody { |
| 32 | + interface A6<T1, T2, T3, T4, T5, T6> extends StepDefinitionBody { |
33 | 33 | void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) throws Throwable;
|
34 | 34 | }
|
35 | 35 | @FunctionalInterface
|
36 |
| - interface A7<T1, T2, T3, T4, T5, T6, T7> extends StepdefBody { |
| 36 | + interface A7<T1, T2, T3, T4, T5, T6, T7> extends StepDefinitionBody { |
37 | 37 | void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) throws Throwable;
|
38 | 38 | }
|
39 | 39 | @FunctionalInterface
|
40 |
| - interface A8<T1, T2, T3, T4, T5, T6, T7, T8> extends StepdefBody { |
| 40 | + interface A8<T1, T2, T3, T4, T5, T6, T7, T8> extends StepDefinitionBody { |
41 | 41 | void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8) throws Throwable;
|
42 | 42 | }
|
43 | 43 | @FunctionalInterface
|
44 |
| - interface A9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extends StepdefBody { |
| 44 | + interface A9<T1, T2, T3, T4, T5, T6, T7, T8, T9> extends StepDefinitionBody { |
45 | 45 | void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8, T9 p9) throws Throwable;
|
46 | 46 | }
|
47 | 47 | }
|
0 commit comments