We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello everyone,
I am trying to use the EasyFlow framework, but I have a problem when I try to call the "on" method.
I have writen the following code:
public enum States implements StateEnum { NEW, SUGGESTION } public enum Events implements EventEnum { CONFIRM, CANCEL } EasyFlow<FlowContext> flow = FlowBuilder.from(States.NEW) .transit( on(Events.CONFIRM).to(States.SUGGESTION));
At the code above, the "on" method is not recognized.
Do you have any idea how I could resolve this problem?
The text was updated successfully, but these errors were encountered:
I had problems with versions prior to au.com.datasymphony:EasyFlow:1.3.1
did you create a static import for on and from
I have:
import static au.com.ds.ef.FlowBuilder.on; import static au.com.ds.ef.FlowBuilder.from; import static com.mdvx.android.xxx.statemachines.MyMachine.MyStates.; import static com.mdvx.android.xxx.statemachines.MyMachine.MyEvents.;
Sorry, something went wrong.
No branches or pull requests
Hello everyone,
I am trying to use the EasyFlow framework, but I have a problem when I try to call the "on" method.
I have writen the following code:
At the code above, the "on" method is not recognized.
Do you have any idea how I could resolve this problem?
The text was updated successfully, but these errors were encountered: