blob: 01d4b8a22199e933cbbf9470f15db92e88f09782 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2018 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/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.epsilon.eol.launch;
import org.eclipse.epsilon.eol.EolModule;
/**
*
* @author Sina Madani
* @since 1.6
*/
public class EolRunConfiguration extends IEolRunConfiguration {
public static Builder<? extends EolRunConfiguration, ?> Builder() {
return Builder(EolRunConfiguration.class);
}
public EolRunConfiguration(Builder<? extends EolRunConfiguration, ?> builder) {
super(builder);
}
public EolRunConfiguration(EolRunConfiguration other) {
super(other);
}
@Override
public EolModule getModule() {
return (EolModule) super.getModule();
}
@Override
protected EolModule getDefaultModule() {
return new EolModule();
}
}