12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?eclipse version="3.4"?>
- <plugin>
- <!-- Editor Highlighting Adapter -->
- <extension
- point="org.eclipse.core.runtime.adapters">
- <factory
- adaptableType="org.eclipse.gmf.runtime.diagram.ui.resources.editor.parts.DiagramDocumentEditor"
- class="org.yakindu.sct.simulation.ui.model.presenter.IHighlightingSupportAdapterFactory">
- <adapter
- type="de.itemis.gmf.runtime.commons.highlighting.IHighlightingSupport">
- </adapter>
- </factory>
- </extension>
-
- <!-- Session Listener -->
- <extension
- point="org.eclipse.ui.views">
- <view
- allowMultiple="false"
- class="org.yakindu.sct.simulation.ui.view.SimulationView"
- icon="icons/Declarations-View-16.gif"
- id="org.yakindu.sct.simulation.ui.declarationview"
- name="Simulation View"
- restorable="true">
- </view>
- </extension>
- <extension
- point="org.eclipse.debug.core.statusHandlers">
- <statusHandler
- class="org.yakindu.sct.simulation.ui.handler.GenericStatusHandler"
- code="200"
- id="org.yakindu.sct.simulation.ui.statushandler"
- plugin="org.yakindu.sct.simulation.core">
- </statusHandler>
- </extension>
- <extension
- point="org.eclipse.debug.core.statusHandlers">
- <statusHandler
- class="org.yakindu.sct.simulation.ui.handler.TerminateLaunchStatusHandler"
- code="765"
- id="org.yakindu.sct.simulation.ui.statushandler"
- plugin="org.yakindu.sct.simulation.core">
- </statusHandler>
- </extension>
-
- <!-- Source Display Adapter factory -->
- <extension
- point="org.eclipse.core.runtime.adapters">
- <factory
- adaptableType="org.yakindu.sct.simulation.core.debugmodel.SCTStackFrame"
- class="org.yakindu.sct.simulation.ui.model.presenter.SCTSourceDisplayAdapterFactory">
- <adapter
- type="org.eclipse.debug.ui.sourcelookup.ISourceDisplay">
- </adapter>
- </factory>
- <factory
- adaptableType="org.yakindu.sct.simulation.core.debugmodel.SCTDebugThread"
- class="org.yakindu.sct.simulation.ui.model.presenter.SCTSourceDisplayAdapterFactory">
- <adapter
- type="org.eclipse.debug.ui.sourcelookup.ISourceDisplay">
- </adapter>
- </factory>
- <factory
- adaptableType="org.yakindu.sct.simulation.core.debugmodel.SCTDebugTarget"
- class="org.yakindu.sct.simulation.ui.model.presenter.SCTSourceDisplayAdapterFactory">
- <adapter
- type="org.eclipse.debug.ui.sourcelookup.ISourceDisplay">
- </adapter>
- </factory>
- </extension>
- <extension
- point="org.eclipse.ui.preferencePages">
- <page
- class="org.yakindu.sct.simulation.ui.preferences.SimulationPreferencePage"
- id="org.yakindu.sct.simulation.ui.preferences.SimulationPreferencePage"
- name="Simulation"
- category="org.yakindu.sct.ui.preferences.root">
- </page>
- </extension>
- <extension
- point="org.eclipse.core.runtime.preferences">
- <initializer
- class="org.yakindu.sct.simulation.ui.preferences.PreferenceInitializer">
- </initializer>
- </extension>
- </plugin>
|