com.aventstack.extentreports.SystemAttributeContext Maven / Gradle / Ivy
package com.aventstack.extentreports;
import java.util.ArrayList;
import java.util.List;
import com.aventstack.extentreports.model.SystemAttribute;
public class SystemAttributeContext {
private List sysAttrCollection;
public SystemAttributeContext() {
sysAttrCollection = new ArrayList<>();
}
public void setSystemAttribute(SystemAttribute sa) {
sysAttrCollection.add(sa);
}
public List getSystemAttributeList() { return sysAttrCollection; }
public void clear() { sysAttrCollection.clear(); }
}