Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-06-23 12:38:35 +0000
committerMichael Valenta2004-06-23 12:38:35 +0000
commit80a03684ae967ff2528bf771064316ae7a4fddaf (patch)
treeeac7dcaecf670ed52a84fd8818cca3fc9eb6ab4f
parente8ebe059e4098cdb60ca36cbfb19365dbfeb1cec (diff)
downloadeclipse.platform.team-80a03684ae967ff2528bf771064316ae7a4fddaf.tar.gz
eclipse.platform.team-80a03684ae967ff2528bf771064316ae7a4fddaf.tar.xz
eclipse.platform.team-80a03684ae967ff2528bf771064316ae7a4fddaf.zip
Fixed broken links in javadocI20040623
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/ProjectSetSerializationContext.java2
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java4
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamOperation.java6
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java2
4 files changed, 7 insertions, 7 deletions
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/ProjectSetSerializationContext.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/ProjectSetSerializationContext.java
index 47dac33ee..aba7d2a2e 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/ProjectSetSerializationContext.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/ProjectSetSerializationContext.java
@@ -62,7 +62,7 @@ public class ProjectSetSerializationContext {
}
/**
- * Return a {@link org.eclipse.swt.Shell} if there is a UI context
+ * Return a org.eclipse.swt.Shell if there is a UI context
* or <code>null</code> if executing headless.
*
* @return the shell or <code>null</code>
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java
index d4885518c..209055688 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java
@@ -533,8 +533,8 @@ public final class Team {
}
/**
* @deprecated
- * Use {@link org.eclipse.team.core.RepositoryProviderType#getProjectSetSerializer()}
- * to obtain an instance of {@link org.eclipse.team.core.ProjectSetSerializer} instead.
+ * Use {@link org.eclipse.team.core.RepositoryProviderType#getProjectSetCapability()}
+ * to obtain an instance of {@link ProjectSetCapability} instead.
*/
public static IProjectSetSerializer getProjectSetSerializer(String id) {
TeamPlugin plugin = TeamPlugin.getPlugin();
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamOperation.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamOperation.java
index d17f04190..04a048203 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamOperation.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamOperation.java
@@ -28,7 +28,7 @@ import org.eclipse.ui.IWorkbenchSite;
/**
* An operation that can be configured to run in the foreground using
* the {@link org.eclipse.ui.progress.IProgressService} or the background
- * as a {@link org.eclipse.core.runtime.Job}. The execution context is determined
+ * as a {@link org.eclipse.core.runtime.jobs.Job}. The execution context is determined
* by what is returned by the {@link #canRunAsJob()} hint which may be overriden by subclasses.
* Subsclass must override the <code>run(IProgressMonitor)</code> method to perform
* the behavior of the operation in the desired execution context.
@@ -39,7 +39,7 @@ import org.eclipse.ui.IWorkbenchSite;
* Subsclasses can override the methods of this interface to receive job change notifications.
* </p>
* @see org.eclipse.ui.progress.IProgressService
- * @see org.eclipse.core.runtime.Job
+ * @see org.eclipse.core.runtime.jobs.Job
* @see org.eclipse.core.runtime.ISchedulingRule
* @see org.eclipse.core.runtime.jobs.IJobChangeListener
* @since 3.0
@@ -143,7 +143,7 @@ public abstract class TeamOperation extends JobChangeAdapter implements IRunnabl
/**
* If this operation can safely be run in the background, then subclasses can
* override this method and return <code>true</code>. This will make their
- * action run in a {@link org.eclipse.core.runtime.Job}.
+ * action run in a {@link org.eclipse.core.runtime.jobs.Job}.
* Subsclass that override this method should
* also override the <code>getJobName()</code> method.
*
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java
index 89d0ff98e..8a4e15276 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/AbstractSynchronizeParticipant.java
@@ -294,7 +294,7 @@ public abstract class AbstractSynchronizeParticipant implements ISynchronizePart
* </pre>
* where <code>PARTICIPANT_ID</code> is the id of the particant as defined in the plugin manifest.
* </p>
- * @see org.eclipse.team.ui.synchronize.ISynchronizeParticipant#init(org.eclipse.ui.IMemento)
+ * @see org.eclipse.team.ui.synchronize.ISynchronizeParticipant#init(String, org.eclipse.ui.IMemento)
*/
public void init(String secondaryId, IMemento memento) throws PartInitException {
setSecondaryId(secondaryId);

Back to the top