/** * A class for storing the result of attempting to parse. * @author Nathan Carlson */ public class ParseResult { public boolean successful; public String result; ParseResult(boolean successful, String result) { this.successful = successful; this.result = result; } }