
cz.mallat.uasparser.fileparser.Section Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of browsermob-proxy Show documentation
Show all versions of browsermob-proxy Show documentation
A programmatic HTTP/S designed for performance and functional testing
package cz.mallat.uasparser.fileparser;
import java.util.ArrayList;
import java.util.List;
/**
* JavaBean that holds a section from a parsed file. A section is a row in square brackets, e.g. [main]
*
* @author oli
*/
public class Section {
private String name;
private List entries;
public Section(String sectionName) {
this.name = sectionName;
this.entries = new ArrayList();
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List getEntries() {
return entries;
}
public void setEntries(List entries) {
this.entries = entries;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy