Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchProjectDiffNode.java')
-rw-r--r--bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchProjectDiffNode.java87
1 files changed, 0 insertions, 87 deletions
diff --git a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchProjectDiffNode.java b/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchProjectDiffNode.java
deleted file mode 100644
index 1aa09b3d5..000000000
--- a/bundles/org.eclipse.compare/plugins/org.eclipse.compare/compare/org/eclipse/compare/internal/patch/PatchProjectDiffNode.java
+++ /dev/null
@@ -1,87 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2006, 2010 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
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.compare.internal.patch;
-
-import org.eclipse.compare.CompareUI;
-import org.eclipse.compare.ITypedElement;
-import org.eclipse.compare.internal.core.patch.DiffProject;
-import org.eclipse.compare.patch.PatchConfiguration;
-import org.eclipse.compare.structuremergeviewer.Differencer;
-import org.eclipse.compare.structuremergeviewer.IDiffContainer;
-import org.eclipse.compare.structuremergeviewer.IDiffElement;
-import org.eclipse.core.resources.IResource;
-import org.eclipse.core.resources.ResourcesPlugin;
-import org.eclipse.jface.resource.LocalResourceManager;
-import org.eclipse.swt.graphics.Image;
-
-public class PatchProjectDiffNode extends PatchDiffNode {
-
- private final DiffProject project;
- private final PatchConfiguration configuration;
-
- public PatchProjectDiffNode(IDiffContainer parent, DiffProject project, PatchConfiguration configuration) {
- super(project, parent, Differencer.NO_CHANGE);
- this.project = project;
- this.configuration = configuration;
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.compare.structuremergeviewer.DiffNode#getName()
- */
- public String getName() {
- return project.getName();
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.compare.structuremergeviewer.DiffNode#getImage()
- */
- public Image getImage() {
- Image image = CompareUI.getImage(Utilities.getProject(project));
- if (containsProblems()) {
- LocalResourceManager imageCache = PatchCompareEditorInput.getImageCache(getConfiguration());
- image = HunkTypedElement.getHunkErrorImage(image, imageCache, true);
- }
- return image;
- }
-
- private boolean containsProblems() {
- IDiffElement[] elements = getChildren();
- for (int i = 0; i < elements.length; i++) {
- IDiffElement diffElement = elements[i];
- if (diffElement instanceof PatchFileDiffNode) {
- PatchFileDiffNode node = (PatchFileDiffNode) diffElement;
- if (node.getDiffResult().containsProblems())
- return true;
- }
- }
- return false;
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.compare.structuremergeviewer.DiffNode#getType()
- */
- public String getType() {
- return ITypedElement.FOLDER_TYPE;
- }
-
- protected PatchConfiguration getConfiguration() {
- return configuration;
- }
-
- public DiffProject getDiffProject() {
- return project;
- }
-
- public IResource getResource() {
- return ResourcesPlugin.getWorkspace().getRoot().getProject(getDiffProject().getName());
- }
-
-}

Back to the top