blob: 2002f55a0e0f69a185c84d00d3ae37ae75f84b7d [file] [log] [blame]
package org.eclipse.cdt.core.model;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Represents a "using" declaration in C translation unit.
*/
public interface IUsing extends ICElement, ISourceManipulation, ISourceReference {
/**
* Returns the name of the package the statement refers to.
* This is a handle-only method.
*/
String getElementName();
}