sft.Report Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2013, 2014 Sylvain Lézier.
* 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:
* Sylvain Lézier - initial implementation
*******************************************************************************/
package sft;
import sft.decorators.Decorator;
import sft.decorators.DecoratorReportImplementation;
import sft.result.ScenarioResult;
import java.util.List;
public abstract class Report {
private String resourcePath;
private String reportPath;
public void setResourcePath(String resourcePath) {
this.resourcePath = resourcePath;
}
public String getResourcePath() {
return resourcePath;
}
public String getReportPath() {
return reportPath;
}
public void setReportPath(String reportPath) {
this.reportPath = reportPath;
}
public abstract DecoratorReportImplementation getDecoratorImplementation(Decorator decorator);
}