blob: 133f3556b0cc3baf0961d7995f854bfde7b86d00 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* 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
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.workflow.tasks;
import org.eclipse.epsilon.eol.EolModule;
import org.eclipse.epsilon.eol.IEolExecutableModule;
public class EolTask extends ExecutableModuleTask {
@Override
protected void initialize() {
}
@Override
protected IEolExecutableModule createModule() {
return new EolModule();
}
@Override
protected void examine() throws Exception {
}
}