feature 1718935: make Entrypoints implement Iterable

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1115 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-05-14 21:30:53 +00:00
parent 83ee60fe7e
commit 87fa9750f3
1 changed files with 1 additions and 8 deletions

View File

@ -11,7 +11,6 @@
package com.ibm.wala.ipa.callgraph;
import java.util.Iterator;
/**
*
@ -21,12 +20,6 @@ import java.util.Iterator;
*
* @author sfink
*/
public interface Entrypoints {
/**
* Return an iterator of Entrypoint which represents the methods that should
* be considered entrypoints during call graph construction
* @return an Iterator of Entrypoint
*/
public Iterator<? extends Entrypoint> iterator();
public interface Entrypoints extends Iterable<Entrypoint>{
}