com.powsybl.computation.AbstractCommand Maven / Gradle / Ivy
/**
* Copyright (c) 2016, All partners of the iTesla project (http://www.itesla-project.eu/consortium)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.powsybl.computation;
import java.util.List;
/**
*
* @author Geoffroy Jamgotchian
*/
abstract class AbstractCommand implements Command {
protected final String id;
protected final List inputFiles;
protected final List outputFiles;
protected AbstractCommand(String id, List inputFiles, List outputFiles) {
this.id = id;
this.inputFiles = inputFiles;
this.outputFiles = outputFiles;
}
@Override
public String getId() {
return id;
}
@Override
public List getInputFiles() {
return inputFiles;
}
@Override
public List getOutputFiles() {
return outputFiles;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy