Returns an enumeration of the module file entries with the
specified prefix. All elements in the enumeration are of
type String. Each String represents a file name relative
to the root of the module.
param
prefix the prefix of entries to be included
return
an enumeration of the archive file entries.
Enumeration allEntries = entries();
Vector entries = new Vector();
while (allEntries.hasMoreElements()) {
String name = (String) allEntries.nextElement();
if (name != null && name.startsWith(prefix)) {
entries.add(name);
}
}
return entries.elements();
an @see java.util.Enumeration of entries in this abstract
archive, providing the list of embedded archive to not count their
entries as part of this archive