Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariableDeclaration.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariableDeclaration.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariableDeclaration.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariableDeclaration.java
deleted file mode 100644
index b96ced20d7d..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariableDeclaration.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/**********************************************************************
-Copyright (c) 2002, 2004 IBM Rational Software 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:
-    IBM Rational Software - Initial API and implementation
-**********************************************************************/
-package org.eclipse.cdt.core.model;
-
-/**
- * Represents the declaration of a variable.
- */
-public interface IVariableDeclaration extends IDeclaration {
- /**
- * Returns the variable declaration type name.
- * @return String
- * @throws CModelException
- */
- public String getTypeName() throws CModelException;
-
- /**
- * Sets the variable declaration type name.
- * @param type
- * @throws CModelException
- */
- public void setTypeName(String type) throws CModelException;
-}

Back to the top