
net.crate.compiler.StepDef Maven / Gradle / Ivy
The newest version!
package net.crate.compiler;
import com.squareup.javapoet.MethodSpec;
import com.squareup.javapoet.TypeSpec;
import java.util.List;
final class StepDef {
private final TypeSpec typeSpec;
private final List nextMethod;
StepDef(TypeSpec typeSpec, List nextMethod) {
this.typeSpec = typeSpec;
this.nextMethod = nextMethod;
}
TypeSpec typeSpec() {
return typeSpec;
}
List nextMethods() {
return nextMethod;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy