more generics

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@524 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-01-02 18:49:12 +00:00
parent 78c8e93f33
commit 39f49924ad
4 changed files with 4 additions and 4 deletions

View File

@ -342,7 +342,7 @@ public class ArrayClass implements IClass, Constants {
/* (non-Javadoc)
* @see com.ibm.wala.classLoader.IClass#getAllMethods()
*/
public Collection getAllMethods() throws ClassHierarchyException {
public Collection<IMethod> getAllMethods() throws ClassHierarchyException {
Assertions.UNREACHABLE();
return null;
}

View File

@ -153,7 +153,7 @@ public interface IClass extends IClassHierarchyDweller {
* @return Collection of IMethods
* @throws ClassHierarchyException
*/
Collection getAllMethods() throws ClassHierarchyException;
Collection<IMethod> getAllMethods() throws ClassHierarchyException;
/**
* Compute the instance fields declared by this class.

View File

@ -260,7 +260,7 @@ public class FakeRootMethod extends SyntheticMethod {
*
* @see com.ibm.wala.classLoader.IClass#getAllMethods()
*/
public Collection getAllMethods() throws ClassHierarchyException {
public Collection<IMethod> getAllMethods() throws ClassHierarchyException {
Assertions.UNREACHABLE();
return null;
}

View File

@ -279,7 +279,7 @@ public class BypassSyntheticClass extends SyntheticClass {
/* (non-Javadoc)
* @see com.ibm.wala.classLoader.IClass#getAllMethods()
*/
public Collection getAllMethods() throws ClassHierarchyException {
public Collection<IMethod> getAllMethods() throws ClassHierarchyException {
return realType.getAllMethods();
}