net.sf.sevenzipjbinding
Interface IOutUpdateArchiveTar

All Superinterfaces:
IOutArchiveBase, IOutUpdateArchive<IOutItemTar>
All Known Implementing Classes:
OutArchiveTarImpl

public interface IOutUpdateArchiveTar
extends IOutUpdateArchive<IOutItemTar>

The interface provides functionality to update existing Tar archives.
The standard way of getting the implementation of this interface is to use IInArchive.getConnectedOutArchive() method like this:

  IInArchive inArchive = SevenZip.openInArchive(null, inStream);
  IOutUpdateArchive<IOutItemBase> outArchive = inArchive.openOutArchive();

  if (outArchive instanceof IOutUpdateArchiveTar) {
    IOutUpdateArchiveTar outUpdateArchiveTarz = (IOutUpdateArchiveTar)outArchive;
    ...
  }

  outArchive.updateItems(...);

  ...

  inArchive.close();
 

Since:
9.20-2.00
Author:
Boris Brodski
See Also:
IOutUpdateArchive, IInArchive, IOutItemBase, IOutItemAllFormats

Method Summary
 
Methods inherited from interface net.sf.sevenzipjbinding.IOutUpdateArchive
getArchiveFormat, getConnectedInArchive, updateItems
 
Methods inherited from interface net.sf.sevenzipjbinding.IOutArchiveBase
getTracePrintStream, isTrace, setTrace, setTracePrintStream