Package com.sonarsource.rpg.api.checks
Interface Check
-
- All Known Implementing Classes:
VisitorBasedCheck
public interface CheckThe interface which should be implemented by all RPG checks (rules). Instead of implementing directly this interface, most checks should extendVisitorBasedCheckwhich make it easier to work on specific parts of the source code.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcheck(CheckContext context)This method is called for each check on each RPG file.
-
-
-
Method Detail
-
check
void check(CheckContext context)
This method is called for each check on each RPG file.- Parameters:
context- Check context
-
-