Package com.aspose.zip
Class EventsBag
- java.lang.Object
-
- com.aspose.zip.EventsBag
-
public final class EventsBag extends Object
Events container used on
Archivesaving.- See Also:
ArchiveSaveOptions
-
-
Constructor Summary
Constructors Constructor Description EventsBag()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Event<EntryEventArgs>getEntryAccessed()Gets an event that is raised before an archive entry is being compressed.Event<CancelEntryEventArgs>getEntryCompressed()Gets an event that is raised after an archive entry has been compressed.voidsetEntryAccessed(Event<EntryEventArgs> value)Sets an event that is raised before an archive entry is being compressed.voidsetEntryCompressed(Event<CancelEntryEventArgs> value)Sets an event that is raised after an archive entry has been compressed.
-
-
-
Method Detail
-
getEntryCompressed
public Event<CancelEntryEventArgs> 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<CancelEntryEventArgs> 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<EntryEventArgs> 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<EntryEventArgs> 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.
-
-