Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2011-03-02 03:43:05 +0000
committerspingel2011-03-02 03:43:05 +0000
commitfcfc44dd93046f0b81d6300a0836ffca9e664c8b (patch)
treecf4764a3842f289b907058ccd3f842ceba457c44 /org.eclipse.mylyn.tasks.core/schema
parentd51e695c7bf4a837cdf31005773858c478fc2768 (diff)
downloadorg.eclipse.mylyn.tasks-fcfc44dd93046f0b81d6300a0836ffca9e664c8b.tar.gz
org.eclipse.mylyn.tasks-fcfc44dd93046f0b81d6300a0836ffca9e664c8b.tar.xz
org.eclipse.mylyn.tasks-fcfc44dd93046f0b81d6300a0836ffca9e664c8b.zip
NEW - bug 286963: [api] add support for ignoring incoming notification on specified fields
https://bugs.eclipse.org/bugs/show_bug.cgi?id=286963
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/schema')
-rw-r--r--org.eclipse.mylyn.tasks.core/schema/synchronizationParticipants.exsd24
1 files changed, 22 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.tasks.core/schema/synchronizationParticipants.exsd b/org.eclipse.mylyn.tasks.core/schema/synchronizationParticipants.exsd
index e80ab468b..a12dc0660 100644
--- a/org.eclipse.mylyn.tasks.core/schema/synchronizationParticipants.exsd
+++ b/org.eclipse.mylyn.tasks.core/schema/synchronizationParticipants.exsd
@@ -18,7 +18,8 @@
</annotation>
<complexType>
<choice>
- <element ref="participant" minOccurs="1" maxOccurs="unbounded"/>
+ <element ref="participant" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="suppressIncoming" minOccurs="0" maxOccurs="unbounded"/>
</choice>
<attribute name="point" type="string" use="required">
<annotation>
@@ -69,13 +70,32 @@
</documentation>
<appInfo>
- <meta.attribute kind="java" basedOn="org.eclipse.mylyn.tasks.core.sync.TaskSynchronizationParticipant:"/>
+ <meta.attribute kind="java" basedOn="org.eclipse.mylyn.tasks.core.sync.SynchronizationParticipant:"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
+ <element name="suppressIncoming">
+ <complexType>
+ <attribute name="connectorKind" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="attributeId" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
<annotation>
<appInfo>
<meta.section type="since"/>

Back to the top