Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2009-02-04 12:30:48 +0000
committerTomasz Zarna2009-02-04 12:30:48 +0000
commit8452f19cc1f3f9a6f0a421ec90e968ae4170b038 (patch)
treed6b90671326211a72dc13af790d37335c7a49859 /bundles
parentd1344d004682e4ccd4bf73c3d56e2c5d401cde06 (diff)
downloadeclipse.platform.team-8452f19cc1f3f9a6f0a421ec90e968ae4170b038.tar.gz
eclipse.platform.team-8452f19cc1f3f9a6f0a421ec90e968ae4170b038.tar.xz
eclipse.platform.team-8452f19cc1f3f9a6f0a421ec90e968ae4170b038.zip
bug 263621: Leaking API in SubscriberParticipant
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.team.ui/.settings/.api_filters14
-rw-r--r--bundles/org.eclipse.team.ui/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java10
3 files changed, 20 insertions, 6 deletions
diff --git a/bundles/org.eclipse.team.ui/.settings/.api_filters b/bundles/org.eclipse.team.ui/.settings/.api_filters
index 1899d5441..cc87338d0 100644
--- a/bundles/org.eclipse.team.ui/.settings/.api_filters
+++ b/bundles/org.eclipse.team.ui/.settings/.api_filters
@@ -8,4 +8,18 @@
</message_arguments>
</filter>
</resource>
+ <resource path="src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java" type="org.eclipse.team.ui.synchronize.SubscriberParticipant">
+ <filter id="338944126">
+ <message_arguments>
+ <message_argument value="org.eclipse.team.ui.synchronize.SubscriberParticipant"/>
+ <message_argument value="setRefreshSchedule(SubscriberRefreshSchedule)"/>
+ </message_arguments>
+ </filter>
+ <filter id="338944126">
+ <message_arguments>
+ <message_argument value="org.eclipse.team.ui.synchronize.SubscriberParticipant"/>
+ <message_argument value="getRefreshSchedule()"/>
+ </message_arguments>
+ </filter>
+ </resource>
</component>
diff --git a/bundles/org.eclipse.team.ui/META-INF/MANIFEST.MF b/bundles/org.eclipse.team.ui/META-INF/MANIFEST.MF
index 8ff7e3621..242f1e4dc 100644
--- a/bundles/org.eclipse.team.ui/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.team.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.team.ui; singleton:=true
-Bundle-Version: 3.4.100.qualifier
+Bundle-Version: 3.5.0.qualifier
Bundle-Activator: org.eclipse.team.internal.ui.TeamUIPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java
index 8417c66e0..275a582b2 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/SubscriberParticipant.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 2009 IBM Corporation 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
@@ -338,8 +338,8 @@ public abstract class SubscriberParticipant extends AbstractSynchronizeParticipa
return collector;
}
- /*(non-Javadoc)
- * Not to be called by clients.
+ /**
+ * @noreference This method is not intended to be referenced by clients.
*/
public void setRefreshSchedule(SubscriberRefreshSchedule schedule) {
if (refreshSchedule != schedule) {
@@ -352,8 +352,8 @@ public abstract class SubscriberParticipant extends AbstractSynchronizeParticipa
firePropertyChange(this, AbstractSynchronizeParticipant.P_SCHEDULED, schedule, schedule);
}
- /* (non-Javadoc)
- * Not to be called by clients.
+ /**
+ * @noreference This method is not intended to be referenced by clients.
*/
public SubscriberRefreshSchedule getRefreshSchedule() {
return refreshSchedule;

Back to the top