Searched defs:filePath (Results 1 - 6 of 6) sorted by relevance
| /glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/ |
| H A D | Util.java | 73 * @param filePath 78 public static File verifyFilePath(final String filePath) throws FileNotFoundException, IOException { argument 79 File f = new File(filePath); 96 * @param filePath 101 static File verifyNonDirectoryFilePath(final String filePath) throws FileNotFoundException, IOException { argument 102 File f = verifyFilePath(filePath);
|
| /glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbc/ |
| H A D | MappingGenerator.java | 482 * @param filePath a directory where *.dbschema is located 485 private static void writeSchemaFile(SchemaElement schema, File filePath) argument 490 new File(filePath, NameUtil.getSchemaResourceName(
|
| /glassfish-3.1.2/deployment/autodeploy/src/main/java/org/glassfish/deployment/autodeploy/ |
| H A D | AutoDeployer.java | 647 static String getNameFromFilePath(File autodeployDir, File filePath) { //creating module name as file name argument 649 File parent = filePath.getParentFile(); 660 moduleName = filePath.getName(); 662 moduleName = moduleName + "_" + filePath.getName();
|
| /glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/archivist/ |
| H A D | Archivist.java | 1579 * @param filePath to the file to add 1582 protected static void addFileToArchive(WritableArchive archive, String filePath, String entryName) argument 1585 FileInputStream is = new FileInputStream(new File(filePath));
|
| /glassfish-3.1.2/installer/src/cpp/share/launcher/ |
| H A D | java.c | 1574 FindAbsolutePath(char *filePath) { argument 1591 if (filePath && !IsAbsolutePath(filePath)) 1593 absolutePath = (char *)MemAlloc(strlen(currentDirectory ) + strlen(filePath) + 2); 1594 sprintf(absolutePath, "%s%c%s", currentDirectory, FILE_SEPARATOR_CHAR, filePath); 1598 absolutePath = filePath;
|
| /glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/ |
| H A D | DeploymentProperties.java | 255 public String getName(String filePath) { argument 256 return getProperty(NAME, getDefaultComponentName(filePath)); 383 public String getDefaultContextRoot(String filePath) { argument 384 return getDefaultComponentName(filePath); 387 private String getDefaultComponentName(String filePath) { argument 388 final String fileName = new File(filePath).getName();
|
Completed in 40 milliseconds