isSetter abstract method

bool isSetter()

Checks if this method is a setter.

Returns:

  • true if declared with set keyword
  • false otherwise

Note: Setters have exactly one parameter and return void.

Implementation

bool isSetter();