Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.ui.common.base/plugin.xml')
-rw-r--r--plugins/org.eclipse.etrice.ui.common.base/plugin.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.ui.common.base/plugin.xml b/plugins/org.eclipse.etrice.ui.common.base/plugin.xml
new file mode 100644
index 000000000..25530acce
--- /dev/null
+++ b/plugins/org.eclipse.etrice.ui.common.base/plugin.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<plugin>
+ <extension
+ point="org.eclipse.ui.startup">
+ <startup
+ class="org.eclipse.etrice.ui.common.base.concurrency.ConcurrentModificationObserver$Initializer">
+ </startup>
+ </extension>
+ <extension
+ point="org.eclipse.ltk.core.refactoring.renameParticipants">
+ <renameParticipant
+ class="org.eclipse.etrice.ui.common.base.refactoring.DiagramRenameParticipant"
+ id="org.eclipse.etrice.ui.common.renameParticipant"
+ name="eTrice Diagram Rename Participant">
+ <enablement>
+ <with
+ variable="element">
+ <adapt
+ type="org.eclipse.core.resources.IFile">
+ <test
+ property="org.eclipse.core.resources.extension"
+ value="room">
+ </test>
+ </adapt>
+ </with>
+ </enablement>
+ </renameParticipant>
+ </extension>
+ <extension
+ point="org.eclipse.core.runtime.preferences">
+ <initializer
+ class="org.eclipse.etrice.ui.common.base.preferences.UIBasePreferenceInitializer">
+ </initializer>
+ </extension>
+
+</plugin>

Back to the top