Home | History | Annotate | Download | only in analysis

Lines Matching defs:isInterface

64     private final boolean isInterface;
79 * @param isInterface if the class that is verified is an interface.
84 final boolean isInterface)
86 this(currentClass, currentSuperClass, null, isInterface);
97 * @param isInterface if the class that is verified is an interface.
103 final boolean isInterface)
108 this.isInterface = isInterface;
202 if (t == null || isInterface(t)) {
217 private boolean isInterface(final Type t) {
219 return isInterface;
221 return getClass(t).isInterface();