this.setTitle(StringUtils.leftPad("Workspace: " + this.workspace, 100));
}
private void loadProjects() {
try {
XmlWorkflowModelRepositoryFactory factory = new XmlWorkflowModelRepositoryFactory();
factory.setWorkspace(this.workspace.getAbsolutePath());
repo = factory.createModelRepository();
repo.loadGraphs(new HashSet<String>(Arrays.asList("sequential",
"parallel", "task", "condition")));
for (File file : repo.getFiles()) {
List<ModelGraph> graphs = new Vector<ModelGraph>();
for (ModelGraph graph : repo.getGraphs())