Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/DebugCrossRefType.java')
-rw-r--r--core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/DebugCrossRefType.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/DebugCrossRefType.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/DebugCrossRefType.java
deleted file mode 100644
index a11474cab77..00000000000
--- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/debug/DebugCrossRefType.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 QNX Software Systems 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:
- * QNX Software Systems - Initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.cdt.utils.debug;
-
-
-/**
- * DebugCrossRefType
- *
- */
-public class DebugCrossRefType extends DebugDerivedType {
-
- String name;
- String xName;
-
- /**
- *
- */
- public DebugCrossRefType(DebugType type, String name, String xName) {
- super(type);
- this.name = name;
- this.xName = xName;
- }
-
- public String getName() {
- return name;
- }
-
- public String getCrossRefName() {
- return xName;
- }
-
-}

Back to the top