Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-04-12 17:22:48 +0000
committerMichael Valenta2004-04-12 17:22:48 +0000
commit33838b840d67149069e29235d1881f178582e2cd (patch)
treea664f5f47f7fa0ec0874917c0cd282fe20c1322f /bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/NewDateTagAction.java
parent90556cc9f3afb0c5cb2efbf9bf4ad90bba5863e5 (diff)
downloadeclipse.platform.team-33838b840d67149069e29235d1881f178582e2cd.tar.gz
eclipse.platform.team-33838b840d67149069e29235d1881f178582e2cd.tar.xz
eclipse.platform.team-33838b840d67149069e29235d1881f178582e2cd.zip
8470: [CVS UI] Date support in check out, compare...
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/NewDateTagAction.java')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/NewDateTagAction.java57
1 files changed, 57 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/NewDateTagAction.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/NewDateTagAction.java
new file mode 100644
index 000000000..1c971df03
--- /dev/null
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/NewDateTagAction.java
@@ -0,0 +1,57 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2003 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Common Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.team.internal.ccvs.ui.repo;
+
+import java.lang.reflect.InvocationTargetException;
+import java.util.Date;
+
+import org.eclipse.jface.action.IAction;
+import org.eclipse.jface.window.Window;
+import org.eclipse.swt.widgets.Shell;
+import org.eclipse.team.internal.ccvs.core.CVSTag;
+import org.eclipse.team.internal.ccvs.core.ICVSRepositoryLocation;
+import org.eclipse.team.internal.ccvs.ui.CVSUIPlugin;
+import org.eclipse.team.internal.ccvs.ui.DateTagDialog;
+
+/**
+ * Action for creating a CVS Date tag.
+ */
+public class NewDateTagAction extends CVSRepoViewAction {
+
+ /* (non-Javadoc)
+ * @see org.eclipse.team.internal.ccvs.ui.actions.CVSAction#execute(org.eclipse.jface.action.IAction)
+ */
+ protected void execute(IAction action) throws InvocationTargetException, InterruptedException {
+ ICVSRepositoryLocation[] locations = getSelectedRepositoryLocations();
+ if (locations.length != 1) return;
+ CVSTag tag = getDateTag(getShell(), locations[0]);
+ CVSUIPlugin.getPlugin().getRepositoryManager().addDateTag(locations[0], tag);
+ }
+
+ public static CVSTag getDateTag(Shell shell, ICVSRepositoryLocation location) {
+ DateTagDialog dialog = new DateTagDialog(shell);
+ if (dialog.open() == Window.OK) {
+ Date date = dialog.getDate();
+ CVSTag tag = new CVSTag(date);
+ return tag;
+ }
+ return null;
+ }
+
+ /* (non-Javadoc)
+ * @see org.eclipse.team.internal.ui.actions.TeamAction#isEnabled()
+ */
+ protected boolean isEnabled() {
+ ICVSRepositoryLocation[] locations = getSelectedRepositoryLocations();
+ if (locations.length != 1) return false;
+ return true;
+ }
+}

Back to the top