All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.amattioli.workstate.config.InternalTransitionBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package it.amattioli.workstate.config;

import it.amattioli.workstate.core.*;

public class InternalTransitionBuilder extends TransitionBuilder {
	private MetaState state;

	public InternalTransitionBuilder(MetaEvent event, MetaState state) {
		super(event);
		this.state = state;
	}

	public Transition getBuiltTransition() {
		return new InternalTransition(getEvent(), state, getAction(), getGuard());
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy