1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 12:55:40 +02:00

Updated javadoc.

This commit is contained in:
Markus Schorn 2010-05-28 11:48:13 +00:00
parent 8475af8e31
commit 50cde93ef8

View file

@ -22,8 +22,8 @@ public interface ICPPMethod extends ICPPFunction, ICPPMember {
public static final ICPPMethod [] EMPTY_CPPMETHOD_ARRAY = new ICPPMethod[0]; public static final ICPPMethod [] EMPTY_CPPMETHOD_ARRAY = new ICPPMethod[0];
/** /**
* is this a virtual method * Returns whether this method is declared to be virtual. Does not detect whether
* @throws DOMException * the method is virtual because of overriding a virtual method from a base class.
*/ */
public boolean isVirtual() throws DOMException; public boolean isVirtual() throws DOMException;