Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "STP/IM Component/Transformation Approaches/From BPMN/Runtime Technology Based"

(New page: This transformation can be found in the class <code>org.eclipse.stp.im.in.bpmn2im.Bpmn2ImWorkspaceOperation</code> under the method with the following signature: <source lang="java"> publ...)
 
Line 2: Line 2:
  
 
<source lang="java">
 
<source lang="java">
public StpIntermediateModel createIntermediateModelFromBpmn(BpmnDiagram bpmnDiagram, List<String> selectedPools, IProgressMonitor monitor){
+
public StpIntermediateModel createIntermediateModelFromBpmn(BpmnDiagram bpmnDiagram, List<String> selectedPools,  
  ...
+
    IProgressMonitor monitor){
}
+
          ...
 +
}  
 
</source>
 
</source>

Revision as of 04:17, 11 May 2008

This transformation can be found in the class org.eclipse.stp.im.in.bpmn2im.Bpmn2ImWorkspaceOperation under the method with the following signature:

public StpIntermediateModel createIntermediateModelFromBpmn(BpmnDiagram bpmnDiagram, List<String> selectedPools, 
     IProgressMonitor monitor){
          ...
}

Back to the top