From bebfbd06d3fe074ee5b41b5849d681fa013714e4 Mon Sep 17 00:00:00 2001 From: Volker Berlin Date: Tue, 20 Mar 2018 20:33:03 +0100 Subject: [PATCH] ApiDoc --- src/de/inetsoftware/classparser/MethodInfo.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/de/inetsoftware/classparser/MethodInfo.java b/src/de/inetsoftware/classparser/MethodInfo.java index f840a18..54462fe 100644 --- a/src/de/inetsoftware/classparser/MethodInfo.java +++ b/src/de/inetsoftware/classparser/MethodInfo.java @@ -61,6 +61,10 @@ public class MethodInfo { this.classFile = classFile; } + /** + * Get the declaring class file of the method + * @return the ClassFile + */ public ClassFile getDeclaringClassFile() { return classFile; }