mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Comment adjustment.
This commit is contained in:
parent
4f5b949a8c
commit
784d16daf0
1 changed files with 4 additions and 5 deletions
|
@ -22,17 +22,16 @@ import org.eclipse.cdt.core.dom.ast.IBinding;
|
||||||
*/
|
*/
|
||||||
public interface ICPPBinding extends 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 String[] getQualifiedName() throws DOMException;
|
||||||
public char [][] getQualifiedNameCharArray() 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
|
* for example, local variables, function parameters and local classes will
|
||||||
* all return false.
|
* all return false.
|
||||||
* @throws DOMException
|
* @throws DOMException
|
||||||
*/
|
*/
|
||||||
public boolean isGloballyQualified() throws DOMException;
|
public boolean isGloballyQualified() throws DOMException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue