public class Everge extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Everge.InputStatus
Details how we handle our input.
|
| Constructor and Description |
|---|
Everge() |
| Modifier and Type | Method and Description |
|---|---|
static void |
main(String[] args)
Main method for front end,
|
boolean |
processArgs(List<String> errs,
String... args)
Process one or more command line arguments.
|
boolean |
processArgs(String... args)
Process one or more command line arguments.
|
boolean |
processInputFile(List<String> errs,
String fle)
Process a input file.
|
boolean |
processInputFile(String fle)
Process a input file.
|
void |
processString(String inp)
Process an input string.
|
void |
setError(OutputStream err)
Set the error stream.
|
void |
setError(PrintStream err)
Set the error stream.
|
void |
setOutput(OutputStream out)
Set the output stream.
|
void |
setOutput(PrintStream out)
Set the output stream.
|
public void setOutput(PrintStream out)
out - The output stream..public void setOutput(OutputStream out)
out - The output stream..public void setError(PrintStream err)
err - The error stream.public void setError(OutputStream err)
err - The error stream.public static void main(String[] args)
args - The CLI arguments.public boolean processArgs(String... args)
args - The arguments to process.public boolean processArgs(List<String> errs, String... args)
args - The arguments to process.errs - The list to stash errors in.public boolean processInputFile(String fle)
fle - Input file to process.public boolean processInputFile(List<String> errs, String fle)
fle - Input file to process.errs - List to accumulate errors in.public void processString(String inp)
inp - The input string to process.Copyright © 2020. All rights reserved.