plugin.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?eclipse version="3.4"?>
  3. <plugin>
  4. <extension
  5. point="org.eclipse.compare.contentMergeViewers">
  6. <viewer
  7. class="org.yakindu.sct.compare.viewer.DiagramContentMergeViewerCreator"
  8. extensions="diagramcompare_match, diagramcompare_diff, sct"
  9. id="org.yakindu.sct.compare.viewer"
  10. label="Statechart Content Merge Viewer">
  11. </viewer>
  12. <contentTypeBinding
  13. contentMergeViewerId="org.yakindu.sct.compare.viewer"
  14. contentTypeId="org.eclipse.emf.compare.content.type">
  15. </contentTypeBinding>
  16. </extension>
  17. <extension
  18. point="org.eclipse.core.contenttype.contentTypes">
  19. <file-association
  20. content-type="org.eclipse.emf.compare.content.type"
  21. file-extensions="sct"/>
  22. </extension>
  23. <extension
  24. point="org.eclipse.emf.compare.rcp.matchEngine">
  25. <engineFactory
  26. class="org.yakindu.sct.compare.match.MatchEngine.SCTMatchEngineFactory"
  27. ranking="11">
  28. </engineFactory>
  29. </extension>
  30. </plugin>