Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.57 KB

number-methods.md

File metadata and controls

28 lines (17 loc) · 1.57 KB

code pal for ABAP > Documentation > Number of Methods Check

Number of Methods Check

What is the intent of the check?

This check counts the number of methods defined by an ABAP object and reports a finding when this exceeds a configurable threshold. If there are too many methods in a class, this can be an indicator that the Single Responsibility Principle is violated.

How does the check work?

This check counts METHODS and CLASS-METHODS statements within a global or local class definition or interface definition. Inherited methods are mostly not counted, but redefined inherited methods are.

How to solve the issue?

Split the class or interface into multiple classes or interfaces, each containing a subset of the current methods where the methods in subset relate to the same responsibility.

What to do in case of exception?

In exceptional cases, you can suppress this finding by using the pseudo comment "#EC NUMBER_METHODS which should be placed right after the class definition header.

Note that this check is equivalent to a subset of the "OO Size Metrics" check delivered by SAP. That check accepts no pseudo comments or pragmas. We recommend that you either use this Code Pal check or the SAP-delivered check, but not both, since if you use both you get two findings for the exact same issue.

CLASS class_name DEFINITION.   "#EC NUMBER_METHODS
  METHODS method_name_one.
  CLASS-METHODS method_name_two.
ENDCLASS.