Mobile Tools for Java
Release 1.0

org.eclipse.mtj.preverifier
Interface IArchivePreverificationListener

All Known Implementing Classes:
NullArchivePreverificationListener

public interface IArchivePreverificationListener

An interface that clients may provide when pre-verifying archive files to receive callbacks concerning preverification processing.


Method Summary
 boolean classBegin(ZipFile archive, ZipEntry classEntry)
          Preverification is beginning on the specified entry in the specified archive file.
 boolean classEnd(ZipFile archive, ZipEntry classEntry, PreverificationResults results)
          Preverification is ending on the specified entry in the specified archive file.
 void fileBegin(ZipFile archive)
          Preverification is beginning on the specified archive file.
 void fileEnd(ZipFile archive)
          Preverification is ending on the specified archive file.
 

Method Detail

fileBegin

void fileBegin(ZipFile archive)
Preverification is beginning on the specified archive file.

Parameters:
archive -

classBegin

boolean classBegin(ZipFile archive,
                   ZipEntry classEntry)
Preverification is beginning on the specified entry in the specified archive file. The listener must return a boolean indicating whether to continue with the preverification processing.

Parameters:
archive -
classEntry -
Returns:

classEnd

boolean classEnd(ZipFile archive,
                 ZipEntry classEntry,
                 PreverificationResults results)
Preverification is ending on the specified entry in the specified archive file. The listener must return a boolean indicating whether to continue with the preverification processing.

Parameters:
archive -
classEntry -
Returns:

fileEnd

void fileEnd(ZipFile archive)
Preverification is ending on the specified archive file.

Parameters:
archive -

Mobile Tools for Java
Release 1.0