| de.uka.ilkd.key.java.abstraction.Method
All known Subclasses: de.uka.ilkd.key.java.declaration.MethodDeclaration,
Method Summary | |
boolean | isAbstract() Checks if this member is abstract. | boolean | isNative() Checks if this method is native. | boolean | isSynchronized() Checks if this method is synchronized. |
isAbstract | boolean isAbstract()(Code) | | Checks if this member is abstract. A constructor will report
false .
true if this member is abstract,false otherwise. See Also: recoder.abstraction.Constructor |
isNative | boolean isNative()(Code) | | Checks if this method is native. A constructor will report
false .
true if this method is native,false otherwise. See Also: recoder.abstraction.Constructor |
isSynchronized | boolean isSynchronized()(Code) | | Checks if this method is synchronized. A constructor will report
false .
true if this method is synchronized,false otherwise. See Also: recoder.abstraction.Constructor |
|
|