org.eclipse.epsilon.eol.tools.AbstractTool Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.eol.tools;
import java.util.List;
import org.eclipse.epsilon.eol.execute.context.IEolContext;
public class AbstractTool implements ITool {
protected IEolContext context;
public AbstractTool() {
super();
}
@Override
public void setContext(IEolContext context) {
this.context = context;
}
@Override
public IEolContext getContext() {
return context;
}
@Override
public void initialize(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy