Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Macguire2002-06-03 21:04:22 +0000
committerKevin Macguire2002-06-03 21:04:22 +0000
commit89126f962a185eb740634b18b8141a9ca8e9ac6d (patch)
tree181696a39e8412abbd4edd8079e6614495c8805c
parent31903ec5655944b0e32f498bdd23b1524f22d157 (diff)
downloadeclipse.platform.team-89126f962a185eb740634b18b8141a9ca8e9ac6d.tar.gz
eclipse.platform.team-89126f962a185eb740634b18b8141a9ca8e9ac6d.tar.xz
eclipse.platform.team-89126f962a185eb740634b18b8141a9ca8e9ac6d.zip
key is now org.eclipse.team.core.repository
-rw-r--r--bundles/org.eclipse.team.core/plugin.properties2
-rw-r--r--bundles/org.eclipse.team.core/plugin.xml2
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/RepositoryProvider.java8
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/TeamPlugin.java2
4 files changed, 7 insertions, 7 deletions
diff --git a/bundles/org.eclipse.team.core/plugin.properties b/bundles/org.eclipse.team.core/plugin.properties
index 35fd202b5..539fdfdde 100644
--- a/bundles/org.eclipse.team.core/plugin.properties
+++ b/bundles/org.eclipse.team.core/plugin.properties
@@ -4,4 +4,4 @@ FileTypesRegistry=File Types Registry
GlobalIgnoreRegistry=Global Ignore Registry
TeamProjectSets=Team Project Sets
Targets=Target Provider and Location Factories
-Repositories=Repository Provider Factories \ No newline at end of file
+Repository=Repository Provider Factories \ No newline at end of file
diff --git a/bundles/org.eclipse.team.core/plugin.xml b/bundles/org.eclipse.team.core/plugin.xml
index 65a005206..76f3fa238 100644
--- a/bundles/org.eclipse.team.core/plugin.xml
+++ b/bundles/org.eclipse.team.core/plugin.xml
@@ -20,7 +20,7 @@
<extension-point id="fileTypes" name="%FileTypesRegistry"/>
<extension-point id="ignore" name="%GlobalIgnoreRegistry"/>
<extension-point id="projectSets" name="%TeamProjectSets"/>
-<extension-point id="repositories" name="%Repositories"/>
+<extension-point id="repository" name="%Repository"/>
<extension-point id="targets" name="%Targets"/>
<!-- Define common known file types -->
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/RepositoryProvider.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/RepositoryProvider.java
index b7c004a8a..12b39e24b 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/core/RepositoryProvider.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/core/RepositoryProvider.java
@@ -71,8 +71,8 @@ public abstract class RepositoryProvider implements IProjectNature {
private final static String TEAM_SETID = "org.eclipse.team.repository-provider"; //$NON-NLS-1$
private final static QualifiedName PROVIDER_PROP_KEY =
- new QualifiedName("org.eclipse.team", "repository"); //$NON-NLS-1$ //$NON-NLS-2$
-
+ new QualifiedName("org.eclipse.team.core", "repository"); //$NON-NLS-1$ //$NON-NLS-2$
+
private final static List AllProviderTypeIds = initializeAllProviderTypes();
// the project instance that this nature is assigned to
@@ -370,7 +370,7 @@ public abstract class RepositoryProvider implements IProjectNature {
TeamPlugin plugin = TeamPlugin.getPlugin();
if (plugin != null) {
- IExtensionPoint extension = plugin.getDescriptor().getExtensionPoint(TeamPlugin.REPOSITORIES_EXTENSION);
+ IExtensionPoint extension = plugin.getDescriptor().getExtensionPoint(TeamPlugin.REPOSITORY_EXTENSION);
if (extension != null) {
IExtension[] extensions = extension.getExtensions();
for (int i = 0; i < extensions.length; i++) {
@@ -388,7 +388,7 @@ public abstract class RepositoryProvider implements IProjectNature {
private static RepositoryProvider newProvider(String id) {
TeamPlugin plugin = TeamPlugin.getPlugin();
if (plugin != null) {
- IExtensionPoint extension = plugin.getDescriptor().getExtensionPoint(TeamPlugin.REPOSITORIES_EXTENSION);
+ IExtensionPoint extension = plugin.getDescriptor().getExtensionPoint(TeamPlugin.REPOSITORY_EXTENSION);
if (extension != null) {
IExtension[] extensions = extension.getExtensions();
for (int i = 0; i < extensions.length; i++) {
diff --git a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/TeamPlugin.java b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/TeamPlugin.java
index 955a559f8..9f0785f0b 100644
--- a/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/TeamPlugin.java
+++ b/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/TeamPlugin.java
@@ -45,7 +45,7 @@ final public class TeamPlugin extends Plugin {
// The id of the project set extension point
public static final String PROJECT_SET_EXTENSION = "projectSets"; //$NON-NLS-1$
// The id of the targets extension point
- public static final String REPOSITORIES_EXTENSION = "repositories"; //$NON-NLS-1$
+ public static final String REPOSITORY_EXTENSION = "repository"; //$NON-NLS-1$
// The id of the targets extension point
public static final String TARGETS_EXTENSION = "targets"; //$NON-NLS-1$

Back to the top