Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceEntry.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceEntry.java76
1 files changed, 0 insertions, 76 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceEntry.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceEntry.java
deleted file mode 100644
index 2e317eb1dad..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/SourceEntry.java
+++ /dev/null
@@ -1,76 +0,0 @@
-/**********************************************************************
- * Created on Mar 25, 2003
- *
- * Copyright (c) 2002,2003 QNX Software Systems Ltd. and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v0.5
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v05.html
- *
- * Contributors:
- * QNX Software Systems - Initial API and implementation
-***********************************************************************/
-package org.eclipse.cdt.internal.core.model;
-
-import org.eclipse.cdt.core.model.ISourceEntry;
-import org.eclipse.core.runtime.IPath;
-
-public class SourceEntry extends ACPathEntry implements ISourceEntry {
-
- IPath sourcePath;
- IPath outputLocation;
-
- public SourceEntry(IPath sourcePath, IPath outputLocation, boolean isRecursive, IPath[] exclusionPatterns) {
- super(ISourceEntry.CDT_SOURCE, isRecursive, exclusionPatterns, false);
- this.sourcePath = sourcePath;
- this.outputLocation = outputLocation;
- }
-
- /**
- * Returns the absolute path from the worskspace root or
- * relative path of the source folder.
- * @return String
- */
- public IPath getSourcePath() {
- return sourcePath;
- }
-
- /**
- * Binary output location for this source folder.
- * @return IPath, <code>null</code> means to use the
- * default output location of the project.
- */
- public IPath getOutputLocation() {
- return outputLocation;
- }
-
- public boolean equals (Object obj) {
- if (obj instanceof ISourceEntry) {
- ISourceEntry otherEntry = (ISourceEntry)obj;
- if (!super.equals(otherEntry)) {
- return false;
- }
- if (sourcePath == null) {
- if (otherEntry.getSourcePath() != null) {
- return false;
- }
- } else {
- if (!sourcePath.toString().equals(otherEntry.getSourcePath().toString())) {
- return false;
- }
- }
- if (outputLocation == null) {
- if (otherEntry.getOutputLocation() != null) {
- return false;
- }
- } else {
- if (!outputLocation.toString().equals(otherEntry.getOutputLocation().toString())) {
- return false;
- }
- }
- return true;
- }
- return super.equals(obj);
- }
-
-}

Back to the top