Package com.aspose.zip
Class EventsBagXar
- java.lang.Object
-
- com.aspose.zip.EventsBagXar
-
public final class EventsBagXar extends Object
Events container used on
XarArchivesaving.- See Also:
XarSaveOptions
-
-
Constructor Summary
Constructors Constructor Description EventsBagXar()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Event<EntryEventArgsXar>getEntryAccessed()Gets an event that is raised before an archive entry is being compressed.Event<CancelEntryEventArgsXar>getEntryCompressed()Gets an event that is raised after an archive entry has been compressed.voidsetEntryAccessed(Event<EntryEventArgsXar> value)Sets an event that is raised before an archive entry is being compressed.voidsetEntryCompressed(Event<CancelEntryEventArgsXar> value)Sets an event that is raised after an archive entry has been compressed.
-
-
-
Method Detail
-
getEntryCompressed
public Event<CancelEntryEventArgsXar> getEntryCompressed()
Gets an event that is raised after an archive entry has been compressed.- Returns:
- an event that is raised after an archive entry has been compressed
-
setEntryCompressed
public void setEntryCompressed(Event<CancelEntryEventArgsXar> value)
Sets an event that is raised after an archive entry has been compressed.- Parameters:
value- an event that is raised after an archive entry has been compressed
-
getEntryAccessed
public Event<EntryEventArgsXar> getEntryAccessed()
Gets an event that is raised before an archive entry is being compressed.- Returns:
- an event that is raised before an archive entry is being compressed
-
setEntryAccessed
public void setEntryAccessed(Event<EntryEventArgsXar> value)
Sets an event that is raised before an archive entry is being compressed.- Parameters:
value- an event that is raised before an archive entry is being compressed.
-
-