1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Comment adjustment.

This commit is contained in:
Sergey Prigogin 2008-10-04 23:53:06 +00:00
parent 4f5b949a8c
commit 784d16daf0

View file

@ -22,17 +22,16 @@ import org.eclipse.cdt.core.dom.ast.IBinding;
*/
public interface ICPPBinding extends IBinding {
/**
* return an array of strings representing the qualified name of this binding
* Returns an array of strings representing the qualified name of this binding.
*/
public String [] getQualifiedName() throws DOMException;
public char [][] getQualifiedNameCharArray() throws DOMException;
public String[] getQualifiedName() throws DOMException;
public char[][] getQualifiedNameCharArray() throws DOMException;
/**
* returns true if this binding is qualified wrt the translation unit
* Returns true if this binding is qualified with respect to the translation unit
* for example, local variables, function parameters and local classes will
* all return false.
* @throws DOMException
*/
public boolean isGloballyQualified() throws DOMException;
}