From 50cde93ef8a9ef9fd5603e5736c5cfdfb7164428 Mon Sep 17 00:00:00 2001 From: Markus Schorn Date: Fri, 28 May 2010 11:48:13 +0000 Subject: [PATCH] Updated javadoc. --- .../parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPMethod.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPMethod.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPMethod.java index ea7b7468600..f030578b61d 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPMethod.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPMethod.java @@ -22,8 +22,8 @@ public interface ICPPMethod extends ICPPFunction, ICPPMember { public static final ICPPMethod [] EMPTY_CPPMETHOD_ARRAY = new ICPPMethod[0]; /** - * is this a virtual method - * @throws DOMException + * Returns whether this method is declared to be virtual. Does not detect whether + * the method is virtual because of overriding a virtual method from a base class. */ public boolean isVirtual() throws DOMException;