Package org.codehaus.plexus.archiver.zip
Class AddedDirs
- java.lang.Object
-
- org.codehaus.plexus.archiver.zip.AddedDirs
-
public class AddedDirs extends Object
A list of directories that have been added to an archive.
-
-
Constructor Summary
Constructors Constructor Description AddedDirs()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Set<String>
allAddedDirs()
Deque<String>
asStringDeque(String entry)
Stack<String>
asStringStack(String entry)
Deprecated.useasStringDeque(String)
instead.void
clear()
boolean
update(String vPath)
Adds the path to this list.
-
-
-
Method Detail
-
asStringStack
@Deprecated public Stack<String> asStringStack(String entry)
Deprecated.useasStringDeque(String)
instead.
-
clear
public void clear()
-
update
public boolean update(String vPath)
Adds the path to this list.- Parameters:
vPath
- The path to add.- Returns:
- true if the path was already present, false if it has been added.
-
-