cucumber.api.java8.StepdefBody Maven / Gradle / Ivy
package cucumber.api.java8;
public interface StepdefBody {
public static interface A0 extends StepdefBody {
void accept();
}
public static interface A1 extends StepdefBody {
void accept(T1 p1);
}
public static interface A2 extends StepdefBody {
void accept(T1 p1, T2 p2);
}
public static interface A3 extends StepdefBody {
void accept(T1 p1, T2 p2, T3 p3);
}
public static interface A4 extends StepdefBody {
void accept(T1 p1, T2 p2, T3 p3, T4 p4);
}
public static interface A5 extends StepdefBody {
void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5);
}
public static interface A6 extends StepdefBody {
void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6);
}
public static interface A7 extends StepdefBody {
void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7);
}
public static interface A8 extends StepdefBody {
void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8);
}
public static interface A9 extends StepdefBody {
void accept(T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8, T9 p9);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy