Mobile Tools for Java
Release 1.0

org.eclipse.mtj.preverifier
Class NullArchivePreverificationListener

java.lang.Object
  extended by org.eclipse.mtj.preverifier.NullArchivePreverificationListener
All Implemented Interfaces:
IArchivePreverificationListener

public class NullArchivePreverificationListener
extends Object
implements IArchivePreverificationListener

Null implementation of the IArchivePreverificationListener implementation.


Constructor Summary
NullArchivePreverificationListener()
           
 
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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NullArchivePreverificationListener

public NullArchivePreverificationListener()
Method Detail

fileBegin

public void fileBegin(ZipFile archive)
Description copied from interface: IArchivePreverificationListener
Preverification is beginning on the specified archive file.

Specified by:
fileBegin in interface IArchivePreverificationListener
See Also:
IArchivePreverificationListener.fileBegin(java.util.zip.ZipFile)

classBegin

public boolean classBegin(ZipFile archive,
                          ZipEntry classEntry)
Description copied from interface: IArchivePreverificationListener
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.

Specified by:
classBegin in interface IArchivePreverificationListener
Returns:
See Also:
IArchivePreverificationListener.classBegin(java.util.zip.ZipFile, java.util.zip.ZipEntry)

classEnd

public boolean classEnd(ZipFile archive,
                        ZipEntry classEntry,
                        PreverificationResults results)
Description copied from interface: IArchivePreverificationListener
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.

Specified by:
classEnd in interface IArchivePreverificationListener
Returns:
See Also:
IArchivePreverificationListener.classEnd(java.util.zip.ZipFile, java.util.zip.ZipEntry, org.eclipse.mtj.preverifier.results.PreverificationResults)

fileEnd

public void fileEnd(ZipFile archive)
Description copied from interface: IArchivePreverificationListener
Preverification is ending on the specified archive file.

Specified by:
fileEnd in interface IArchivePreverificationListener
See Also:
IArchivePreverificationListener.fileEnd(java.util.zip.ZipFile)

Mobile Tools for Java
Release 1.0