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

eu.lestard.redux_javafx_devtool.actions.ClientActionDispatchedAction Maven / Gradle / Ivy

package eu.lestard.redux_javafx_devtool.actions;

public class ClientActionDispatchedAction {
	private final Object clientAction;
	private final Object clientState;

	public ClientActionDispatchedAction(Object clientAction, Object clientState) {
		this.clientAction = clientAction;
		this.clientState = clientState;
	}

	public Object getClientAction() {
		return clientAction;
	}

	public Object getClientState() {
		return clientState;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy