org.pitest.mutationtest.engine.gregor.AnnotationInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pitest Show documentation
Show all versions of pitest Show documentation
Mutation testing system for Java.
package org.pitest.mutationtest.engine.gregor;
public class AnnotationInfo {
private final String descriptor;
private final boolean visible;
public AnnotationInfo(String descriptor, boolean visible) {
this.descriptor = descriptor;
this.visible = visible;
}
public String descriptor() {
return descriptor;
}
public boolean isVisible() {
return visible;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy