diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2019-06-13 19:07:28 -0400 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2019-06-13 19:07:28 -0400 |
| commit | 7ece1ed3e64770561a1e50085969dcfa6bda20a9 (patch) | |
| tree | 4653612556ad33ec02a205945c6c2b89dd18f6de /src/main/java/bjc/replpair/ReplOpts.java | |
| parent | f46810bf4277d2b2ef78819af3c1f8bf69494f2d (diff) | |
Rename package
Things are now in package bjc.everge, not bjc.replpair
Diffstat (limited to 'src/main/java/bjc/replpair/ReplOpts.java')
| -rw-r--r-- | src/main/java/bjc/replpair/ReplOpts.java | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/src/main/java/bjc/replpair/ReplOpts.java b/src/main/java/bjc/replpair/ReplOpts.java deleted file mode 100644 index a1645bb..0000000 --- a/src/main/java/bjc/replpair/ReplOpts.java +++ /dev/null @@ -1,69 +0,0 @@ -package bjc.replpair; - -/** - * Options for processing ReplPairs. - * - * @author Ben Culkin. - */ -public class ReplOpts { - /** - * The default priority. - */ - public int defPrior; - /** - * The default stage. - */ - public int defStage; - - /** - * Whether to process multi-line defns. - */ - public boolean defMulti; - - /** - * Default status. - */ - public StageStatus defStatus; - - /** - * Enable debug info. - */ - public boolean isDebug; - - /** - * Create a default set of options. - */ - public ReplOpts() { - defPrior = 0; - defStage = 0; - - defMulti = false; - - defStatus = StageStatus.BOTH; - - isDebug = false; - } - - /** - * Create a new set of repl. opts - * - * @param p - * The default priority to use - * @param s - * The default stage to use - * @param m - * Whether to process multi-line defns. - * @param t - * The default status. - */ - public ReplOpts(int p, int s, boolean m, StageStatus t, boolean d) { - defPrior = p; - defStage = s; - - defMulti = m; - - defStatus = t; - - isDebug = d; - } -} |
