Interface StatementConsumer
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface StatementConsumer
- Author:
- lana
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(DebuggingSource debuggingSource, com.smeup.rpgparser.parsing.facade.SourceReference sourceReference)Called by debugge before the statement execution
-
-
-
Method Detail
-
accept
void accept(DebuggingSource debuggingSource, com.smeup.rpgparser.parsing.facade.SourceReference sourceReference)
Called by debugge before the statement execution- Parameters:
debuggingSource- The debugging sourcesourceReference- The source reference of the line
-
-