From df8b9f9db30b8995ed19085b783ee94fc391ac06 Mon Sep 17 00:00:00 2001 From: sjfink Date: Mon, 13 Apr 2009 19:14:54 +0000 Subject: [PATCH] tweak a comment git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3446 f5eafffb-2e1d-0410-98e4-8ec43c5233c4 --- com.ibm.wala.core/src/com/ibm/wala/classLoader/IClass.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/com.ibm.wala.core/src/com/ibm/wala/classLoader/IClass.java b/com.ibm.wala.core/src/com/ibm/wala/classLoader/IClass.java index fec7c478c..c7e64a101 100644 --- a/com.ibm.wala.core/src/com/ibm/wala/classLoader/IClass.java +++ b/com.ibm.wala.core/src/com/ibm/wala/classLoader/IClass.java @@ -35,8 +35,6 @@ public interface IClass extends IClassHierarchyDweller { /** * Is this class a Java interface? - * - * @return boolean */ boolean isInterface(); @@ -63,13 +61,14 @@ public interface IClass extends IClassHierarchyDweller { IClass getSuperclass() throws ClassHierarchyException; /** - * @return Collection of (IClass) interfaces this class directly implements If this class is an interface, returns the interfaces + * @return Collection of (IClass) interfaces this class directly implements. If this class is an interface, returns the interfaces * it immediately extends. */ Collection getDirectInterfaces() throws ClassHierarchyException; /** * @return Collection of (IClass) interfaces this class implements, including all ancestors of interfaces immediately implemented. + * If this class is an interface, it returns all super-interfaces. */ Collection getAllImplementedInterfaces() throws ClassHierarchyException;