mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
@Override annotations.
This commit is contained in:
parent
84cd2842eb
commit
c1740cc639
1 changed files with 7 additions and 6 deletions
|
@ -33,19 +33,20 @@ public interface ICPPClassType extends ICompositeType, ICPPBinding {
|
||||||
public ICPPBase[] getBases();
|
public ICPPBase[] getBases();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get fields is restated here just to point out that this method returns a
|
* Get fields is restated here just to point out that this method returns a list of ICPPField
|
||||||
* list of ICPPField objects representing all fields, declared or inherited.
|
* objects representing all fields, declared or inherited.
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public IField[] getFields();
|
public IField[] getFields();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* findField is restated here to point out that this method looks through
|
* findField is restated here to point out that this method looks through the inheritance tree
|
||||||
* the inheritance tree of this class while looking for a field with the
|
* of this class while looking for a field with the given name If no field is found, null is
|
||||||
* given name If no field is found, null is returned, if the name is found
|
* returned, if the name is found to be ambiguous a IProblemBinding is returned.
|
||||||
* to be ambiguous a IProblemBinding is returned.
|
|
||||||
*
|
*
|
||||||
* @param name
|
* @param name
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public IField findField(String name);
|
public IField findField(String name);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue