Interface ArchiveEntryWrapper
-
- All Known Implementing Classes:
ArchiveEntryWrapperImpl
public interface ArchiveEntryWrapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ArchiveEntryWrappergetParentArchive()Get's the parent archive wrapper applicable only for the nested archive.List<? extends ArchiveMember>getSubstitutables()Get's all the substitutable entries from an archive.voidnotifyCompletion()AnArchiveMembercall this method to notify the successful completion of string substitution.
-
-
-
Method Detail
-
getParentArchive
ArchiveEntryWrapper getParentArchive()
Get's the parent archive wrapper applicable only for the nested archive.- Returns:
- Reference to the parent archive or
nullif no parent archive found.
-
getSubstitutables
List<? extends ArchiveMember> getSubstitutables()
Get's all the substitutable entries from an archive. List also includes theSubstitutableentries from the nested archive.- Returns:
- All the archive entries that has to undergo string substitution.
-
notifyCompletion
void notifyCompletion()
AnArchiveMembercall this method to notify the successful completion of string substitution.
-
-