diff --git a/src/de/inetsoftware/classparser/MethodInfo.java b/src/de/inetsoftware/classparser/MethodInfo.java index 27de2b5..25e2f17 100644 --- a/src/de/inetsoftware/classparser/MethodInfo.java +++ b/src/de/inetsoftware/classparser/MethodInfo.java @@ -101,6 +101,15 @@ public class MethodInfo implements Member { return (accessFlags & 0x0008) > 0; } + /** + * If the method is abstract + * + * @return true, if abstract + */ + public boolean isAbstract() { + return (accessFlags & 0x0400) > 0; + } + /** * @return the name */