From f2feb8e5af5da11038044a30cac8a4f2b1c8219c Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Mon, 24 Jun 2019 20:49:30 -0400 Subject: Update site --- docs/apidocs/allclasses-frame.html | 7 +- docs/apidocs/allclasses-noframe.html | 7 +- .../bjc/everge/ControlledString.Control.html | 345 ++++++++++++++++ docs/apidocs/bjc/everge/ControlledString.html | 444 +++++++++++++++++++++ docs/apidocs/bjc/everge/Everge.InputStatus.html | 4 +- docs/apidocs/bjc/everge/Everge.html | 8 +- docs/apidocs/bjc/everge/IntHolder.html | 4 +- docs/apidocs/bjc/everge/ReplError.html | 4 +- docs/apidocs/bjc/everge/ReplOpts.html | 4 +- docs/apidocs/bjc/everge/ReplPair.html | 20 +- docs/apidocs/bjc/everge/ReplParseException.html | 8 +- docs/apidocs/bjc/everge/ReplSet.html | 367 +++++++++++++++++ docs/apidocs/bjc/everge/StageStatus.html | 8 +- docs/apidocs/bjc/everge/StringUtils.html | 48 ++- .../everge/class-use/ControlledString.Control.html | 165 ++++++++ .../bjc/everge/class-use/ControlledString.html | 155 +++++++ .../bjc/everge/class-use/Everge.InputStatus.html | 4 +- docs/apidocs/bjc/everge/class-use/Everge.html | 4 +- docs/apidocs/bjc/everge/class-use/IntHolder.html | 4 +- docs/apidocs/bjc/everge/class-use/ReplError.html | 9 +- docs/apidocs/bjc/everge/class-use/ReplOpts.html | 9 +- docs/apidocs/bjc/everge/class-use/ReplPair.html | 43 +- .../bjc/everge/class-use/ReplParseException.html | 4 +- docs/apidocs/bjc/everge/class-use/ReplSet.html | 149 +++++++ docs/apidocs/bjc/everge/class-use/StageStatus.html | 4 +- docs/apidocs/bjc/everge/class-use/StringUtils.html | 4 +- docs/apidocs/bjc/everge/package-frame.html | 7 +- docs/apidocs/bjc/everge/package-summary.html | 22 +- docs/apidocs/bjc/everge/package-tree.html | 7 +- docs/apidocs/bjc/everge/package-use.html | 19 +- docs/apidocs/constant-values.html | 4 +- docs/apidocs/deprecated-list.html | 4 +- docs/apidocs/help-doc.html | 4 +- docs/apidocs/index-all.html | 103 ++++- docs/apidocs/index.html | 2 +- docs/apidocs/overview-tree.html | 7 +- docs/apidocs/serialized-form.html | 4 +- 37 files changed, 1934 insertions(+), 81 deletions(-) create mode 100644 docs/apidocs/bjc/everge/ControlledString.Control.html create mode 100644 docs/apidocs/bjc/everge/ControlledString.html create mode 100644 docs/apidocs/bjc/everge/ReplSet.html create mode 100644 docs/apidocs/bjc/everge/class-use/ControlledString.Control.html create mode 100644 docs/apidocs/bjc/everge/class-use/ControlledString.html create mode 100644 docs/apidocs/bjc/everge/class-use/ReplSet.html (limited to 'docs/apidocs') diff --git a/docs/apidocs/allclasses-frame.html b/docs/apidocs/allclasses-frame.html index c7a26c8..7a4f535 100644 --- a/docs/apidocs/allclasses-frame.html +++ b/docs/apidocs/allclasses-frame.html @@ -2,10 +2,10 @@ - + All Classes (everge 1.0-SNAPSHOT API) - + @@ -13,6 +13,8 @@

All Classes

diff --git a/docs/apidocs/allclasses-noframe.html b/docs/apidocs/allclasses-noframe.html index e30dfb5..7655b7e 100644 --- a/docs/apidocs/allclasses-noframe.html +++ b/docs/apidocs/allclasses-noframe.html @@ -2,10 +2,10 @@ - + All Classes (everge 1.0-SNAPSHOT API) - + @@ -13,6 +13,8 @@

All Classes

diff --git a/docs/apidocs/bjc/everge/ControlledString.Control.html b/docs/apidocs/bjc/everge/ControlledString.Control.html new file mode 100644 index 0000000..bcc1248 --- /dev/null +++ b/docs/apidocs/bjc/everge/ControlledString.Control.html @@ -0,0 +1,345 @@ + + + + + + +ControlledString.Control (everge 1.0-SNAPSHOT API) + + + + + + + + + + + + +
+
bjc.everge
+

Class ControlledString.Control

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    ControlledString
    +
    +
    +
    +
    public static class ControlledString.Control
    +extends Object
    +
    Represents a single control (a key-values pair)
    +
    +
    Author:
    +
    Ben Culkin
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        name

        +
        public String name
        +
        The name of the control.
        +
      • +
      + + + +
        +
      • +

        args

        +
        public String[] args
        +
        The arguments to the control.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Control

        +
        public Control()
        +
        Create a new blank control.
        +
      • +
      + + + +
        +
      • +

        Control

        +
        public Control(String nam)
        +
        Create a new argless control.
        +
        +
        Parameters:
        +
        nam - The name of the control.
        +
        +
      • +
      + + + +
        +
      • +

        Control

        +
        public Control(String nam,
        +               String... ars)
        +
        Create a new control.
        +
        +
        Parameters:
        +
        nam - The name of the control.
        +
        ars - The arguments of the control.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/everge/ControlledString.html b/docs/apidocs/bjc/everge/ControlledString.html new file mode 100644 index 0000000..41e2733 --- /dev/null +++ b/docs/apidocs/bjc/everge/ControlledString.html @@ -0,0 +1,444 @@ + + + + + + +ControlledString (everge 1.0-SNAPSHOT API) + + + + + + + + + + + + +
+
bjc.everge
+

Class ControlledString

+
+
+ +
+
    +
  • +
    +
    +
    public class ControlledString
    +extends Object
    +
    Represents a string with a set of control flags attached to it.
    +
    +
    Author:
    +
    Ben Culkin
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        strang

        +
        public String strang
        +
        The string the controls apply to.
        +
      • +
      + + + + +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ControlledString

        +
        public ControlledString()
        +
        Create a new blank controlled string.
        +
      • +
      + + + +
        +
      • +

        ControlledString

        +
        public ControlledString(String strung)
        +
        Create a new controlled string without any controls.
        +
        +
        Parameters:
        +
        strung - The string to use.
        +
        +
      • +
      + + + +
        +
      • +

        ControlledString

        +
        public ControlledString(String strung,
        +                        ControlledString.Control... controls)
        +
        Create a new controlled string.
        +
        +
        Parameters:
        +
        strung - The string to use.
        +
        controls - The controls that apply to the string.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        hasControls

        +
        public boolean hasControls()
        +
        Check if the string has controls.
        +
        +
        Returns:
        +
        Whether or not the string has controls.
        +
        +
      • +
      + + + +
        +
      • +

        parse

        +
        public static ControlledString parse(String lne,
        +                                     String contInd,
        +                                     String contSep,
        +                                     String contArg,
        +                                     String contEsc)
        +
        Parse a controlled string from a regular string. + + The controls must be parsed from the beginning of the string, and are indicated by occurances + of contInd that bracket them from the string. The individual controls are delimited by + instances of contSep, with arguments to them being separated by occurances of contArg. + + Each of those separators (which must be regular strings, not regexes or anything) may be + escaped by preceeding them with a copy of contEsc.
        +
        +
        Parameters:
        +
        lne - The string to parse frmo.
        +
        contInd - The indicator for whether or not there are controls.
        +
        contSep - The separator of individual controls.
        +
        contArg - The separator of control arguments.
        +
        contEsc - The escape string for each of the separators/indicators.
        +
        Returns:
        +
        A parsed control string.
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + + + + +

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/everge/Everge.InputStatus.html b/docs/apidocs/bjc/everge/Everge.InputStatus.html index ad7d978..4871ac9 100644 --- a/docs/apidocs/bjc/everge/Everge.InputStatus.html +++ b/docs/apidocs/bjc/everge/Everge.InputStatus.html @@ -2,10 +2,10 @@ - + Everge.InputStatus (everge 1.0-SNAPSHOT API) - + diff --git a/docs/apidocs/bjc/everge/Everge.html b/docs/apidocs/bjc/everge/Everge.html index c8f4e72..f92527c 100644 --- a/docs/apidocs/bjc/everge/Everge.html +++ b/docs/apidocs/bjc/everge/Everge.html @@ -2,10 +2,10 @@ - + Everge (everge 1.0-SNAPSHOT API) - + @@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab";
- + static List<ReplPair> ReplPair.readList(List<ReplPair> detals, Scanner scn, @@ -156,12 +171,28 @@ an existing list.
- + static List<ReplPair> ReplPair.readList(List<ReplPair> detals, Scanner scn, List<ReplError> errs, - ReplOpts ropts)  + ReplOpts ropts) +
Read a list of replacement pairs from an input source, adding them to + an existing list.
+ + + + + + + + + + + +
Constructor parameters in bjc.everge with type arguments of type ReplPair 
Constructor and Description
ReplSet(List<ReplPair> lst) +
Create a new set of pairs using an existing list of pairs.
+
diff --git a/docs/apidocs/bjc/everge/class-use/ReplParseException.html b/docs/apidocs/bjc/everge/class-use/ReplParseException.html index 154f563..411795c 100644 --- a/docs/apidocs/bjc/everge/class-use/ReplParseException.html +++ b/docs/apidocs/bjc/everge/class-use/ReplParseException.html @@ -2,10 +2,10 @@ - + Uses of Class bjc.everge.ReplParseException (everge 1.0-SNAPSHOT API) - + diff --git a/docs/apidocs/bjc/everge/class-use/ReplSet.html b/docs/apidocs/bjc/everge/class-use/ReplSet.html new file mode 100644 index 0000000..359b918 --- /dev/null +++ b/docs/apidocs/bjc/everge/class-use/ReplSet.html @@ -0,0 +1,149 @@ + + + + + + +Uses of Class bjc.everge.ReplSet (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
bjc.everge.ReplSet

+
+
+ +
+ +
+ + + + + + + +
+ + +

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/everge/class-use/StageStatus.html b/docs/apidocs/bjc/everge/class-use/StageStatus.html index 15905d7..e2a5a65 100644 --- a/docs/apidocs/bjc/everge/class-use/StageStatus.html +++ b/docs/apidocs/bjc/everge/class-use/StageStatus.html @@ -2,10 +2,10 @@ - + Uses of Class bjc.everge.StageStatus (everge 1.0-SNAPSHOT API) - + diff --git a/docs/apidocs/bjc/everge/class-use/StringUtils.html b/docs/apidocs/bjc/everge/class-use/StringUtils.html index d257622..0e714b0 100644 --- a/docs/apidocs/bjc/everge/class-use/StringUtils.html +++ b/docs/apidocs/bjc/everge/class-use/StringUtils.html @@ -2,10 +2,10 @@ - + Uses of Class bjc.everge.StringUtils (everge 1.0-SNAPSHOT API) - + diff --git a/docs/apidocs/bjc/everge/package-frame.html b/docs/apidocs/bjc/everge/package-frame.html index e9030fe..d140f27 100644 --- a/docs/apidocs/bjc/everge/package-frame.html +++ b/docs/apidocs/bjc/everge/package-frame.html @@ -2,10 +2,10 @@ - + bjc.everge (everge 1.0-SNAPSHOT API) - + @@ -14,11 +14,14 @@

Classes

Enums

diff --git a/docs/apidocs/bjc/everge/package-summary.html b/docs/apidocs/bjc/everge/package-summary.html index 7fa0e64..86bc127 100644 --- a/docs/apidocs/bjc/everge/package-summary.html +++ b/docs/apidocs/bjc/everge/package-summary.html @@ -2,10 +2,10 @@ - + bjc.everge (everge 1.0-SNAPSHOT API) - + @@ -83,6 +83,18 @@ +ControlledString + +
Represents a string with a set of control flags attached to it.
+ + + +ControlledString.Control + +
Represents a single control (a key-values pair)
+ + + Everge
Everge front-end application.
@@ -113,6 +125,12 @@ +ReplSet + +
A set of ReplPairs, kept together for easy use
+ + + StringUtils
Utility methods for strings.
diff --git a/docs/apidocs/bjc/everge/package-tree.html b/docs/apidocs/bjc/everge/package-tree.html index 4e3a096..9312b6d 100644 --- a/docs/apidocs/bjc/everge/package-tree.html +++ b/docs/apidocs/bjc/everge/package-tree.html @@ -2,10 +2,10 @@ - + bjc.everge Class Hierarchy (everge 1.0-SNAPSHOT API) - + @@ -77,11 +77,14 @@
-
A B C D E F G I L M N O P R S T V  +
A B C D E F G H I L M N O P R S T V 

A

+
addPairs(List<ReplPair>) - Method in class bjc.everge.ReplSet
+
+
Adds more pairs to the ReplSet.
+
+
addPairs(ReplPair...) - Method in class bjc.everge.ReplSet
+
+
Adds more pairs to the ReplSet.
+
apply(String) - Method in class bjc.everge.ReplPair
 
+
apply(String) - Method in class bjc.everge.ReplSet
+
+
Apply the ReplSet to a string.
+
+
args - Variable in class bjc.everge.ControlledString.Control
+
+
The arguments to the control.
+
@@ -92,6 +108,42 @@
compareTo(ReplPair) - Method in class bjc.everge.ReplPair
 
+
Control() - Constructor for class bjc.everge.ControlledString.Control
+
+
Create a new blank control.
+
+
Control(String) - Constructor for class bjc.everge.ControlledString.Control
+
+
Create a new argless control.
+
+
Control(String, String...) - Constructor for class bjc.everge.ControlledString.Control
+
+
Create a new control.
+
+
ControlledString - Class in bjc.everge
+
+
Represents a string with a set of control flags attached to it.
+
+
ControlledString() - Constructor for class bjc.everge.ControlledString
+
+
Create a new blank controlled string.
+
+
ControlledString(String) - Constructor for class bjc.everge.ControlledString
+
+
Create a new controlled string without any controls.
+
+
ControlledString(String, ControlledString.Control...) - Constructor for class bjc.everge.ControlledString
+
+
Create a new controlled string.
+
+
ControlledString.Control - Class in bjc.everge
+
+
Represents a single control (a key-values pair)
+
+
controls - Variable in class bjc.everge.ControlledString
+
+
The controls that apply to the string.
+
@@ -154,6 +206,8 @@
The string to look for.
+
fromFile(String) - Static method in class bjc.everge.ReplSet
+
 
@@ -165,6 +219,16 @@
Get the value.
+
+ + +

H

+
+
hasControls() - Method in class bjc.everge.ControlledString
+
+
Check if the string has controls.
+
+
@@ -194,6 +258,8 @@
Enable debug info.
+
isDebug - Static variable in class bjc.everge.StringUtils
+
 
isPerf - Variable in class bjc.everge.ReplOpts
Enable performance info.
@@ -232,6 +298,10 @@

N

+
name - Variable in class bjc.everge.ControlledString.Control
+
+
The name of the control.
+
name - Variable in class bjc.everge.ReplPair
The name of this replacement.
@@ -256,6 +326,10 @@

P

+
parse(String, String, String, String, String) - Static method in class bjc.everge.ControlledString
+
+
Parse a controlled string from a regular string.
+
priority - Variable in class bjc.everge.ReplPair
The priority for this replacement.
@@ -301,7 +375,10 @@ an existing list.
readList(List<ReplPair>, Scanner, List<ReplError>, ReplOpts) - Static method in class bjc.everge.ReplPair
-
 
+
+
Read a list of replacement pairs from an input source, adding them to + an existing list.
+
replace - Variable in class bjc.everge.ReplPair
The string to replace it with.
@@ -354,6 +431,18 @@
 
ReplParseException(String, List<ReplError>) - Constructor for exception bjc.everge.ReplParseException
 
+
ReplSet - Class in bjc.everge
+
+
A set of ReplPairs, kept together for easy use
+
+
ReplSet() - Constructor for class bjc.everge.ReplSet
+
+
Create a new blank set of pairs.
+
+
ReplSet(List<ReplPair>) - Constructor for class bjc.everge.ReplSet
+
+
Create a new set of pairs using an existing list of pairs.
+
@@ -366,6 +455,10 @@
Possible statuses of pairs with respect to exporting.
+
strang - Variable in class bjc.everge.ControlledString
+
+
The string the controls apply to.
+
StringUtils - Class in bjc.everge
Utility methods for strings.
@@ -423,7 +516,7 @@ the order they are declared.
the order they are declared. -A B C D E F G I L M N O P R S T V  +A B C D E F G H I L M N O P R S T V 
diff --git a/docs/apidocs/index.html b/docs/apidocs/index.html index 09f02cf..998435a 100644 --- a/docs/apidocs/index.html +++ b/docs/apidocs/index.html @@ -2,7 +2,7 @@ - + everge 1.0-SNAPSHOT API @@ -81,11 +81,14 @@