Searched defs:rootDirectory (Results 1 - 2 of 2) sorted by relevance

/glassfish-3.1.2/common/scattered-archive-api/src/main/java/org/glassfish/embeddable/archive/
H A DScatteredArchive.java91 File rootDirectory; field in class:ScatteredArchive
117 * Construct a new scattered archive with all the contents from the rootDirectory.
120 * rootDirectory must be a File location.
122 // public ScatteredArchive(String name, Type type, String rootDirectory) {
123 // this(name, type, rootDirectory != null ? new File(rootDirectory) : null);
127 * Construct a new scattered archive with all the contents from the rootDirectory.
131 * directory (rootDirectory).
133 * For example, In case of a WAR type archive, the rootDirectory should look like this:
135 * rootDirectory/WE
154 ScatteredArchive(String name, Type type, File rootDirectory) argument
[all...]
H A DAssembler.java71 return assembleWAR(archive.name, archive.rootDirectory,
74 return assembleJAR(archive.name, archive.rootDirectory,
77 return assembleRAR(archive.name, archive.rootDirectory,
108 URI assembleWAR(String name, File rootDirectory, List<File> classpaths, argument
115 transferDir(rootDirectory, jos, "");
130 URI assembleJAR(String name, File rootDirectory, List<File> classpaths, argument
135 transferDir(rootDirectory, jos, "");
150 URI assembleRAR(String name, File rootDirectory, List<File> classpaths, argument
155 transferDir(rootDirectory, jos, "");
172 topLevelFileNames.addAll(getFileNames(rootDirectory));
[all...]

Completed in 12 milliseconds