All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aventstack.extentreports.SystemAttributeContext Maven / Gradle / Ivy

There is a newer version: 5.1.2
Show newest version
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(); }    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy