When developing with Lotus Symphony developers often like to automatically launch the same files over and over again to test their integrations.
The developer should then create a new plugin project, and add the following extension
org.eclipse.ui.startup
Create your class and implement IStartup Interface
public class UnitTestStartup
implements IStartup {
publicvoid earlyStartup() {
}
}
The developer should point to a directory as an Array of Strings, or a file as a string, and then call the openView method for each String.
com.ibm.productivity.tools.ui.RichDocumentViewFactory.
openView(filename,
false);
When Lotus Symphony is started your project will be loaded, and these files you want to test, will automatically be loaded.