Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.commons.notifications.ui/plugin.xml')
-rw-r--r--org.eclipse.mylyn.commons.notifications.ui/plugin.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.commons.notifications.ui/plugin.xml b/org.eclipse.mylyn.commons.notifications.ui/plugin.xml
new file mode 100644
index 00000000..406cfced
--- /dev/null
+++ b/org.eclipse.mylyn.commons.notifications.ui/plugin.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<!--
+ Copyright (c) 2010 Tasktop Technologies and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+
+ Contributors:
+ Tasktop Technologies - initial API and implementation
+ -->
+<plugin>
+ <extension-point id="notifications" name="Noification Provider" schema="schema/notifications.exsd"/>
+ <extension
+ point="org.eclipse.mylyn.commons.notifications.ui.notifications">
+ <sink
+ class="org.eclipse.mylyn.internal.commons.notifications.ui.popup.PopupNotificationSink"
+ id="org.eclipse.mylyn.commons.notifications.sink.Popup"
+ label="Desktop Popup">
+ </sink>
+ </extension>
+ <extension
+ point="org.eclipse.core.runtime.preferences">
+ <initializer
+ class="org.eclipse.mylyn.internal.commons.notifications.ui.NotificationsPreferencesInitializer">
+ </initializer>
+ </extension>
+ <extension
+ point="org.eclipse.ui.preferencePages">
+ <!--
+ <page
+ category="org.eclipse.ui.preferencePages.Workbench"
+ class="org.eclipse.mylyn.internal.commons.ui.notifications.NotificationsPreferencesPage"
+ id="org.eclipse.mylyn.commons.notifications.preferencePages.Notifications"
+ name="Notifications">
+ </page>
+ -->
+ <page
+ category="org.eclipse.mylyn.preferencePages.Mylyn"
+ class="org.eclipse.mylyn.internal.commons.notifications.ui.NotificationsPreferencesPage"
+ id="org.eclipse.mylyn.commons.notifications.preferencePages.Notifications"
+ name="Notifications">
+ </page>
+ </extension>
+
+</plugin>

Back to the top