Skip to content

Instantly share code, notes, and snippets.

@egealpay
Created February 27, 2019 10:26
Show Gist options
  • Save egealpay/a14ca6f54be2697e1bbd90e6051056b2 to your computer and use it in GitHub Desktop.
Save egealpay/a14ca6f54be2697e1bbd90e6051056b2 to your computer and use it in GitHub Desktop.
public class ReporterConfig {
/**
* The class name of the reporter listener
*/
private String m_className;
/**
* The properties of the reporter listener
*/
private List<Property> m_properties = new ArrayList<Property>();
public void addProperty(Property property) {
m_properties.add(property);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment