嗨,我有一个子流程,我在代码中调用该子流程是Nasgro一个我未构建的GUi,或者代码知道我可以毫无问题地调用该子流程,但我希望该子流程为我执行一些功能,而不仅仅是打开
public class Container {
private SuperType type;
public Container(Enum type, Object value){
this.type = HulpMethodes.createSuperType(type,value);
}
public void canValueConvertToType(Enum type){
this.type.canValueConvertToType(type);
}
}