[Help] How to change the local of generated files [message #509247] |
Thu, 21 January 2010 13:58  |
Eclipse User |
|
|
|
Hi,
I use the mofScript editor on my aplication calling IWorkbenchPage page; page.openEditor(file, "org.eclipse.mofscript.editor.MofScriptTextEditor");
but I need to change de default dir of generated files.
How should i do that?
|
|
|
Re: [Help] How to change the local of generated files [message #512629 is a reply to message #509247] |
Fri, 05 February 2010 11:49  |
Eclipse User |
|
|
|
Hello Fabricio,
Not sure if this is what you are asking for but here is the Java code for
setting the output.
If you have the output dir, look at the bottom line.
public void setRootDirectoryProperty (IFile file) {
String rootDir = null;
try {
rootDir = file.getPersistentProperty(new QualifiedName("",
MofScriptPropertyPage.OUTPUT_DIRECTORY_PROPERTY));
if (rootDir == null) {
rootDir =
MofScriptEditorPlugin.getDefault().getPreferenceString(MofSc riptPreferences.ROOT_DIRECTORY);
if (rootDir != null)
file.setPersistentProperty(new QualifiedName("",
MofScriptPropertyPage.OUTPUT_DIRECTORY_PROPERTY), rootDir);
}
} catch (CoreException xec) {
rootDir =
MofScriptEditorPlugin.getDefault().getPreferenceString(MofSc riptPreferences.ROOT_DIRECTORY);
}
if (rootDir != null && !rootDir.equals(""))
ExecutionManager.getExecutionManager().setRootDirectory(root Dir);
}
Cheers,
G
|
|
|
Powered by
FUDForum. Page generated in 0.03160 seconds