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

io.github.davidebocca.util.unit.test.rules.conf.ClassExclusionConf Maven / Gradle / Ivy

There is a newer version: 0.0.20
Show newest version
package io.github.davidebocca.util.unit.test.rules.conf;

import java.util.ArrayList;
import java.util.List;

public class ClassExclusionConf {

	private List> classesToExclude;

	public List> getClassesToExclude() {
		if (classesToExclude == null) {
			classesToExclude = new ArrayList<>();
		}
		return classesToExclude;
	}

	public void setClassesToExclude(List> classesToExclude) {
		this.classesToExclude = classesToExclude;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy