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

net.amygdalum.testrecorder.profile.ExcludeExplicitExcluded Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
package net.amygdalum.testrecorder.profile;

import java.lang.reflect.Field;

public class ExcludeExplicitExcluded implements FieldsAtRuntime {

	@Override
	public boolean matches(Field field) {
		return field.getAnnotation(Excluded.class) != null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy