큰 EMF 모델, 특히 MDT 프로젝트의 BPMN2.0 모델이 있습니다. BPMN2.0 스키마와 거의 일치하는 Oracle JDeveloper BPMN2 내보내기 형식을 지원해야하지만 BPMN2.0 자체 확장 기능을 보유해야한다는 우리 소프트웨어의 요구 사항이 있습니다. 다음은 예입니다EMF 기존 모델 확장
<startEvent isInterrupting="false" name="Start" id="startEvent0">
<ns2:OracleExtensions>
<ns2:GraphicsAttributes>
<ns2:Position y="225" x="100"/>
<ns2:Size height="21" width="21"/>
</ns2:GraphicsAttributes>
<ns2:FeatureSet>
<ns2:BooleanFeature value="false" name="sync"/>
<ns2:BooleanFeature value="false" name="catchAllErrors"/>
<ns2:BooleanFeature value="false" name="catchAllSystemExceptions"/>
<ns2:StringFeature value="" name="associatedProcess"/>
<ns2:StringFeature value="" name="associatedNode"/>
<ns2:StringFeature value="" name="initiator"/>
<ns2:StringFeature value="operation" name="definedOperationName"/>
<ns2:StringFeature value="PROCESS_DEFAULT" name="generatesEvents"/>
<ns2:StringFeature value="USE_PROCESS_PERMISSION" name="sealType"/>
</ns2:FeatureSet>
<ns2:Participant/>
</ns2:OracleExtensions>
<outputSet/>
<messageEventDefinition/>
</startEvent>
는 NS2에 대한 XSD 스키마가있다, 그래서 쉽게 correspinding의는 Ecore 모델을 생성했습니다. 2 일 동안 해결하려고하는 문제는 OracleExtensions 모델을 기존 BPMN2.0 eCore 모델에 올바른 방법으로 '연결'하는 것입니다. 달성하고자하는 목표는 BPMN2.0 모델러 플러그인을 사용하여 모델을 편집하고 오라클 특정 기능을 편집하기 위해 확장 된 특성을 제공하는 것입니다.
모든 의견을 환영합니다!