diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPClassType.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPClassType.java index c12b248514f..16bfa987063 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPClassType.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPClassType.java @@ -33,19 +33,20 @@ public interface ICPPClassType extends ICompositeType, ICPPBinding { public ICPPBase[] getBases(); /** - * Get fields is restated here just to point out that this method returns a - * list of ICPPField objects representing all fields, declared or inherited. + * Get fields is restated here just to point out that this method returns a list of ICPPField + * objects representing all fields, declared or inherited. */ + @Override public IField[] getFields(); /** - * findField is restated here to point out that this method looks through - * the inheritance tree of this class while looking for a field with the - * given name If no field is found, null is returned, if the name is found - * to be ambiguous a IProblemBinding is returned. + * findField is restated here to point out that this method looks through the inheritance tree + * of this class while looking for a field with the given name If no field is found, null is + * returned, if the name is found to be ambiguous a IProblemBinding is returned. * * @param name */ + @Override public IField findField(String name); /**