
de.is24.deadcode.AnalyzedCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deadcode-maven-plugin Show documentation
Show all versions of deadcode-maven-plugin Show documentation
Finds unused classes of a project
The newest version!
package de.is24.deadcode;
import javax.annotation.Nonnull;
import java.util.Collection;
import java.util.Map;
public class AnalyzedCode {
private final Collection analyzedClasses;
private final Map> dependenciesForClass;
public AnalyzedCode(@Nonnull Collection analyzedClasses, @Nonnull Map> dependenciesForClass) {
this.analyzedClasses = analyzedClasses;
this.dependenciesForClass = dependenciesForClass;
}
@Nonnull
public Collection getAnalyzedClasses() {
return analyzedClasses;
}
@Nonnull
public Map> getDependenciesForClass() {
return dependenciesForClass;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy