gmfをxpandと統合しようとしています。
gmfマニフェストファイルの拡張子を使用してメニューとコマンドを作成しました。xpandジェネレーターを呼び出そうとしています。
コマンドのコードは次のとおりです。
public class customCommand extends AbstractHandler implements IHandler {
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
// TODO Auto-generated method stub
Shell s=HandlerUtil.getActiveShell(event);
MessageBox mb=new MessageBox(s,SWT.None);
WorkflowRunner runner = new WorkflowRunner();
Bundle bundle=Platform.getBundle("MistScriptGenerator");
URL wfUrl = bundle.getEntry("src/workflow/generator.oaw");
String wfFile = "";
try {
wfFile = FileLocator.toFileURL(wfUrl).getFile();
mb.setMessage(wfFile);
mb.open();
Map<String, String> properties = new HashMap<String, String>();
//properties.put("model", $diagramFile$.getLocation().toOSString());
properties=null;
boolean isSuccess = runner.run(wfFile,new org.openarchitectureware.workflow.monitor.NullProgressMonito r(), properties, null);
}
catch (Exception e)
{
}
return null;
}
}
ワークフローのパスを取得することに成功しました。ここで、ワークフローを呼び出しているときに、gmfダイアグラムファイルをワークフローに入力する必要があります。しかし、どうすればファイルのパスを指定できますか?
別のワークベンチを開いてgmfダイグラムを実行します。しかし、gmfダイアグラムファイルのパスを取得するにはどうすればよいですか?
ワークフローにepackageを登録しました。
プロジェクトの締め切りはもうすぐです。