blob: 664327a2fcfd47cc86d8bdfc5bb744e12d49141c [file] [log] [blame]
package org.eclipse.cdt.core.model;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Represents the declaration of a variable.
*/
public interface IVariableDeclaration extends IDeclaration {
public String getTypeName();
public void setTypeName(String type);
}