blob: e89fe9f66d540c4a505d2395cc682a972ed9aee0 [file] [log] [blame]
/*
*
* Copyright (c) 2011 - 2016 - Loetz GmbH & Co KG, 69115 Heidelberg, Germany
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Initial contribution:
* Loetz GmbH & Co. KG
*
*/
package org.eclipse.osbp.abstractstatemachine;
import java.util.TimerTask;
import org.eclipse.osbp.ui.api.message.MessageEvent;
import org.eclipse.osbp.ui.api.statemachine.IStateMachine;
import com.vaadin.ui.UI;
public class TaskEventSource extends TimerTask {
private IStateMachine statemachine;
private MessageEvent event;
public TaskEventSource(IStateMachine statemachine, MessageEvent event) {
this.statemachine = statemachine;
this.event = event;
}
@Override
public void run() {
if (UI.getCurrent().isAttached())
statemachine.processEvent(statemachine, event);
}
}