Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2003-10-07 20:08:20 +0000
committerMichael Valenta2003-10-07 20:08:20 +0000
commita5190813e98a1222b8dd1a870eff21a51bd2fd5e (patch)
tree1da36910979c7f211514e5586ec6e1cf5ddd547f
parent58d211c4031c51900454d7c79cdf4004617c9174 (diff)
downloadeclipse.platform.team-a5190813e98a1222b8dd1a870eff21a51bd2fd5e.tar.gz
eclipse.platform.team-a5190813e98a1222b8dd1a870eff21a51bd2fd5e.tar.xz
eclipse.platform.team-a5190813e98a1222b8dd1a870eff21a51bd2fd5e.zip
Added method to support RelEng subclass
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/TagLocalAction.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/TagLocalAction.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/TagLocalAction.java
index eb1be075e..afacd14d1 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/TagLocalAction.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/TagLocalAction.java
@@ -56,4 +56,15 @@ public class TagLocalAction extends TagAction {
}
};
}
+
+ /**
+ * Return the resources that have been selected by the user. The user has been given
+ * a chance to remove any resources with outgoing changes so all provided resources
+ * are to be tagged.
+ * @return Returns the resources.
+ */
+ protected IResource[] getResources() {
+ return resources;
+ }
+
}

Back to the top