blob: 61e8fe6f9b7107285dc84a5f6df538791957dc2c [file] [log] [blame]
/*******************************************************************************
* 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:
* Louis Rose - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.hutn;
import org.eclipse.epsilon.eol.execute.context.IEolContext;
public interface IHutnContext extends IEolContext {
@Override
default IHutnModule getModule() {
return (IHutnModule) ((IEolContext)this).getModule();
}
}