Methods Summary |
---|
private void | createJavaWebStartPath()Creates the path to this application's java-web-start directory.
String[] onlyFolderNames = new String[] {
mInstance.getJavaWebStartPath(),
mModuleName
};
mJavaWebStartPath = StringUtils.makeFilePath (onlyFolderNames, false);
|
public void | createModuleBackupPath()Returns the absolute path for the backup path for this directory-deployed module
Note that it does not create/check file/directory with such a path.
String[] onlyFolderNames = new String[] {
mInstance.getModuleBackupRepositoryPath(),
mModuleName
};
mModuleBackupPath = StringUtils.makeFilePath (onlyFolderNames, false);
|
public void | createModuleGeneratedXMLPath()Returns the absolute path for storing all the generated xml of this module.
Note that it does not create/check file/directory with such a path.
String[] onlyFolderNames = new String[] {
mInstance.getModuleGeneratedXMLPath(),
mModuleName
};
mModuleGeneratedXMLPath = StringUtils.makeFilePath (onlyFolderNames, false);
|
public void | createModuleJSPPath()Creates the absolute path for storing the generated JSPs of this module.
Note that it does not create/check file/directory with such a path.
String[] onlyFolderNames = new String[] {
mInstance.getWebModuleCompileJspPath(),
mModuleName
};
mModuleJSPPath = StringUtils.makeFilePath (onlyFolderNames, false);
|
private void | createModulePath()
String moduleRepositoryDirPath = mInstance.getModuleRepositoryPath ();
String[] onlyFolderNames = new String[] {
moduleRepositoryDirPath,
mModuleName
};
mModulePath = StringUtils.makeFilePath (onlyFolderNames, false);
|
public void | createModuleStubPath()Returns the absolute path for storing all the stubs of this module.
Note that it does not create/check file/directory with such a path.
String[] onlyFolderNames = new String[] {
mInstance.getModuleStubPath(),
mModuleName
};
mModuleStubPath = StringUtils.makeFilePath (onlyFolderNames, false);
|
public java.lang.String | getJavaWebStartPath()Returns the absolute path to the Java Web Start directory for this application.
Note that it does not create/check file/directory with such a path.
return mJavaWebStartPath;
|
public java.lang.String | getModuleBackupPath()Returns the absolute path for the backup path for this directory-deployed module
Note that it does not create/check file/directory with such a path.
return mModuleBackupPath;
|
public java.lang.String | getModuleGeneratedXMLPath()Returns the absolute path for the all the generated xml within this module.
Note that it does not create/check file/directory with such a path.
return mModuleGeneratedXMLPath;
|
public java.lang.String | getModuleJSPPath()Returns the absolute path for the generated JSPs from this module.
return mModuleJSPPath;
|
public java.lang.String | getModulePath()Returns the absolute path for the all the elements within this module.
Note that it does not create/check file/directory with such a path.
return mModulePath;
|
public java.lang.String | getModuleStubPath()Returns the absolute path for the all the stubs within this module.
Note that it does not create/check file/directory with such a path.
return mModuleStubPath;
|
public java.lang.String | verify()return a String with the error, in English, if the required
directories aren't there or have a problem.
return null if all is OK
return null;
|