Class ZipInputStreamCodeBase.MyIterator
- java.lang.Object
-
- edu.umd.cs.findbugs.classfile.impl.ZipInputStreamCodeBase.MyIterator
-
- All Implemented Interfaces:
ICodeBaseIterator
- Enclosing class:
- ZipInputStreamCodeBase
class ZipInputStreamCodeBase.MyIterator extends java.lang.Object implements ICodeBaseIterator
-
-
Constructor Summary
Constructors Constructor Description MyIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidgetNextEntry()booleanhasNext()Return true if there is another resource to be scanned, false otherwise.ICodeBaseEntrynext()Get the ICodeBaseEntry representing the next resource in the code base.
-
-
-
Method Detail
-
getNextEntry
private void getNextEntry() throws java.io.IOException- Throws:
java.io.IOException
-
hasNext
public boolean hasNext() throws java.lang.InterruptedExceptionDescription copied from interface:ICodeBaseIteratorReturn true if there is another resource to be scanned, false otherwise.- Specified by:
hasNextin 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:ICodeBaseIteratorGet the ICodeBaseEntry representing the next resource in the code base.- Specified by:
nextin interfaceICodeBaseIterator- Returns:
- the ICodeBaseEntry representing the next resource in the code base
- Throws:
java.lang.InterruptedException
-
-