tweak a comment

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3446 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2009-04-13 19:14:54 +00:00
parent f872cc873d
commit df8b9f9db3
1 changed files with 2 additions and 3 deletions

View File

@ -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<IClass> 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<IClass> getAllImplementedInterfaces() throws ClassHierarchyException;