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