![JAR search and dependency download from the Maven repository](/logo.png)
com.intellij.codeInspection.inheritance.search.InheritorsStatisticsSearchResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-analysis-impl Show documentation
Show all versions of java-analysis-impl Show documentation
A packaging of the IntelliJ Community Edition java-analysis-impl library.
This is release number 1 of trunk branch 142.
The newest version!
package com.intellij.codeInspection.inheritance.search;
import com.intellij.psi.PsiClass;
import org.jetbrains.annotations.NotNull;
/**
* @author Dmitry Batkovich
*/
public class InheritorsStatisticsSearchResult {
@NotNull
private final PsiClass myClass;
private final int myPercent;
InheritorsStatisticsSearchResult(final @NotNull PsiClass aClass, final int percent) {
myClass = aClass;
myPercent = percent;
}
public PsiClass getPsiClass() {
return myClass;
}
public int getPercent() {
return myPercent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy