From e68d36aafd8a10fa52ad263045c960747e754b5e Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Sat, 2 Jun 2018 17:39:54 -0300 Subject: Comment changes Perform various comment tweaks and changes --- .../java/bjc/utils/ioutils/RuleBasedConfigReader.java | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java') diff --git a/base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java b/base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java index 9b46c06..3e8851a 100644 --- a/base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java +++ b/base/src/main/java/bjc/utils/ioutils/RuleBasedConfigReader.java @@ -27,25 +27,30 @@ import bjc.utils.funcdata.IMap; */ public class RuleBasedConfigReader { /* - * Function to execute when starting a rule. Takes the tokenizer, and a - * pair of the read token and application state + * Function to execute when starting a rule. + * + * Takes the tokenizer, and a pair of the read token and application state */ private BiConsumer> start; /* - * Function to use when continuing a rule Takes a tokenizer and - * application state + * Function to use when continuing a rule. + * + * Takes a tokenizer and application state */ private BiConsumer continueRule; /* - * Function to use when ending a rule Takes an application state + * Function to use when ending a rule. + * + * Takes an application state */ private Consumer end; /* - * Map of pragma names to pragma actions Pragma actions are functions - * taking a tokenizer and application state + * Map of pragma names to pragma actions. + * + * Pragma actions are functions taking a tokenizer and application state */ private final IMap> pragmas; -- cgit v1.2.3