Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2012-04-06 11:50:01 +0000
committerTomasz Zarna2012-04-06 11:50:01 +0000
commit70099ad7135f3225156b2d86de532d335d4874d8 (patch)
tree7368806c75414fb6bf6b117984e9a7efb1801c8a
parent17da73ea2b32b4aa573c39fa8a80c03f2ddfdefb (diff)
downloadeclipse.platform.team-70099ad7135f3225156b2d86de532d335d4874d8.tar.gz
eclipse.platform.team-70099ad7135f3225156b2d86de532d335d4874d8.tar.xz
eclipse.platform.team-70099ad7135f3225156b2d86de532d335d4874d8.zip
-rw-r--r--bundles/org.eclipse.team.core/.settings/.api_filters10
-rw-r--r--bundles/org.eclipse.team.core/src/org/eclipse/team/core/Team.java3
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamUI.java1
3 files changed, 13 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.core/.settings/.api_filters b/bundles/org.eclipse.team.core/.settings/.api_filters
new file mode 100644
index 000000000..2562537c8
--- /dev/null
+++ b/bundles/org.eclipse.team.core/.settings/.api_filters
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?><component id="org.eclipse.team.core" version="2">
+ <resource path="src/org/eclipse/team/core/Team.java" type="org.eclipse.team.core.Team">
+ <filter id="338944126">
+ <message_arguments>
+ <message_argument value="org.eclipse.team.core.Team"/>
+ <message_argument value="getBundleImporters()"/>
+ </message_arguments>
+ </filter>
+ </resource>
+</component> \ No newline at end of file
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 8d9e12186..140ab941f 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2011 IBM Corporation and others.
+ * Copyright (c) 2000, 2012 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
@@ -590,6 +590,7 @@ public final class Team {
*
* @return IBundleImporter[] returns the available bundle importers
* @since 3.6
+ * @noreference This method is not intended to be referenced by clients.
*/
public synchronized static IBundleImporter[] getBundleImporters() {
if (fBundleImporters == null) {
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamUI.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamUI.java
index f8c558b7a..cfc4635c3 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamUI.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/TeamUI.java
@@ -158,6 +158,7 @@ public class TeamUI {
* @throws CoreException
* if an error occurs while trying to create a page extension
* @since 3.6
+ * @noreference This method is not intended to be referenced by clients.
*/
public static IScmUrlImportWizardPage[] getPages(final String importerId)
throws CoreException {

Back to the top