Class JrtfsCodeBase.JrtfsCodeBaseIterator
- java.lang.Object
-
- edu.umd.cs.findbugs.classfile.impl.JrtfsCodeBase.JrtfsCodeBaseIterator
-
- All Implemented Interfaces:
ICodeBaseIterator
- Enclosing class:
- JrtfsCodeBase
public class JrtfsCodeBase.JrtfsCodeBaseIterator extends java.lang.Object implements ICodeBaseIterator
-
-
Constructor Summary
Constructors Constructor Description JrtfsCodeBaseIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Return true if there is another resource to be scanned, false otherwise.ICodeBaseEntry
next()
Get the ICodeBaseEntry representing the next resource in the code base.
-
-
-
Method Detail
-
hasNext
public boolean hasNext() throws java.lang.InterruptedException
Description copied from interface:ICodeBaseIterator
Return true if there is another resource to be scanned, false otherwise.- Specified by:
hasNext
in interfaceICodeBaseIterator
- Returns:
- true if there is another resource to be scanned, false otherwise
- Throws:
java.lang.InterruptedException
-
next
public ICodeBaseEntry next() throws java.lang.InterruptedException
Description copied from interface:ICodeBaseIterator
Get the ICodeBaseEntry representing the next resource in the code base.- Specified by:
next
in interfaceICodeBaseIterator
- Returns:
- the ICodeBaseEntry representing the next resource in the code base
- Throws:
java.lang.InterruptedException
-
-