Returns whether this ClassNode represents an abstract class. A class is abstract if the ACC_ABSTRACT modifier flag is set in its modifiers. Abstract classes cannot be instantiated directly; they serve as base types for subclasses. This method checks the actual modifier bits, independ
()
| 1853 | * @see #setModifiers(int) |
| 1854 | */ |
| 1855 | public boolean isAbstract() { |
| 1856 | return (getModifiers() & ACC_ABSTRACT) != 0; |
| 1857 | } |
| 1858 | |
| 1859 | /** |
| 1860 | * Returns whether this {@link ClassNode} represents an interface type. |
no test coverage detected