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/Namespace.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/Namespace.java51
1 files changed, 0 insertions, 51 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/Namespace.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/Namespace.java
deleted file mode 100644
index 24424c9233d..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/Namespace.java
+++ /dev/null
@@ -1,51 +0,0 @@
-package org.eclipse.cdt.internal.core.model;
-
-/**********************************************************************
- * Copyright (c) 2002,2003 Rational Software Corporation 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:
- * Rational Software - Initial API and implementation
-***********************************************************************/
-
-import org.eclipse.cdt.core.model.CModelException;
-import org.eclipse.cdt.core.model.ICElement;
-import org.eclipse.cdt.core.model.INamespace;
-
-public class Namespace extends SourceManipulation implements INamespace{
-
- String typeName = ""; //$NON-NLS-1$
- public Namespace(ICElement parent, String name) {
- super(parent, name, CElement.C_NAMESPACE);
- }
-
- /*
- * Returns the typeName.
- * @return String
- */
- public String getTypeName() {
- return typeName;
- }
-
- /*
- * Sets the typeName.
- * @param typeName The typeName to set
- */
- public void setTypeName(String typeName) {
- this.typeName = typeName;
- }
- /* (non-Javadoc)
- * @see java.lang.Object#equals(java.lang.Object)
- */
- public boolean equals(Object other) {
- // TODO Auto-generated method stub
- return (super.equals(other)
- && (this.getStartPos() == ((Namespace)other).getStartPos())
- && (this.getLength() == ((Namespace)other).getLength())
- );
- }
-
-}

Back to the top