Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.svn/src/org/eclipse/papyrus/team/collaborative/svn/utils/CommitActionUtilityWithProperties.java')
-rw-r--r--extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.svn/src/org/eclipse/papyrus/team/collaborative/svn/utils/CommitActionUtilityWithProperties.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.svn/src/org/eclipse/papyrus/team/collaborative/svn/utils/CommitActionUtilityWithProperties.java b/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.svn/src/org/eclipse/papyrus/team/collaborative/svn/utils/CommitActionUtilityWithProperties.java
deleted file mode 100644
index 53747bdd615..00000000000
--- a/extraplugins/team.collaborative/org.eclipse.papyrus.team.collaborative.svn/src/org/eclipse/papyrus/team/collaborative/svn/utils/CommitActionUtilityWithProperties.java
+++ /dev/null
@@ -1,60 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2013 Atos.
- * 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
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Arthur Daussy <a href="mailto:arthur.daussy@atos.net"> - initial API and implementation
- ******************************************************************************/
-package org.eclipse.papyrus.team.collaborative.svn.utils;
-
-import java.util.Arrays;
-import java.util.HashSet;
-
-import org.eclipse.core.resources.IResource;
-
-
-/**
- * Same as {@link CommitActionUtility} however it add to commit set if the file has SVN properties changes
- *
- * @author adaussy
- *
- */
-public class CommitActionUtilityWithProperties extends CommitActionUtility {
-
- public CommitActionUtilityWithProperties(IResourceSelector selector) {
- super(selector);
- }
-
- @Override
- public void initialize(IResourceSelector selector) {
- this.selector = selector;
-
- this.allResourcesSet = new HashSet<IResource>();
- this.allResourcesSet.addAll(Arrays.asList(this.selector.getSelectedResourcesRecursive(new IStateFilter.OrStateFilter(new IStateFilter[] { IStateFilter.SF_COMMITABLE, IStateFilter.SF_CONFLICTING, IStateFilter.SF_TREE_CONFLICTING, IStateFilter.SF_NEW,
- IStateFilter.SF_HAS_PROPERTIES_CHANGES }))));
-
- this.newNonRecursive = new HashSet<IResource>(Arrays.asList(this.selector.getSelectedResources(IStateFilter.SF_IGNORED_BUT_NOT_EXTERNAL)));
- this.newRecursive = new HashSet<IResource>(Arrays.asList(FileUtility.getResourcesRecursive((IResource[]) this.allResourcesSet.toArray(new IResource[this.allResourcesSet.size()]), IStateFilter.SF_NEW, IResource.DEPTH_ZERO)));
-
- HashSet<IResource> fullSet = new HashSet<IResource>(this.newNonRecursive);
- fullSet.addAll(this.newRecursive);
- this.parents = new HashSet<IResource>(Arrays.asList(FileUtility.getOperableParents((IResource[]) fullSet.toArray(new IResource[fullSet.size()]), IStateFilter.SF_UNVERSIONED)));
- this.newNonRecursive.addAll(this.parents);
- fullSet.addAll(this.parents);
-
- this.allResourcesSet.addAll(fullSet);
-
- this.allResources = (IResource[]) this.allResourcesSet.toArray(new IResource[this.allResourcesSet.size()]);
- this.allResourcesSet.addAll(Arrays.asList(FileUtility.addOperableParents(this.allResources, IStateFilter.SF_ADDED, true)));
- this.allResources = (IResource[]) this.allResourcesSet.toArray(new IResource[this.allResourcesSet.size()]);
-
- this.canBeRecursiveCommit = FileUtility.getOperableParents(this.selector.getSelectedResources(), IStateFilter.SF_ADDED, false).length == 0;
- if (this.canBeRecursiveCommit && FileUtility.checkForResourcesPresence(this.allResources, IStateFilter.SF_SWITCHED, IResource.DEPTH_ZERO)) {
- this.canBeRecursiveCommit = false;
- }
- }
-
-}

Back to the top