From be27420d9f67ccbbda1f0663328acdb376d06058 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Tue, 11 Jun 2019 22:57:29 -0400 Subject: Relocate site --- docs/apidocs/bjc/replpair/ReplError.html | 383 +++++++++++++ docs/apidocs/bjc/replpair/ReplPair.html | 604 +++++++++++++++++++++ docs/apidocs/bjc/replpair/StageStatus.html | 367 +++++++++++++ docs/apidocs/bjc/replpair/class-use/ReplError.html | 154 ++++++ docs/apidocs/bjc/replpair/class-use/ReplPair.html | 207 +++++++ .../bjc/replpair/class-use/StageStatus.html | 158 ++++++ docs/apidocs/bjc/replpair/package-frame.html | 26 + docs/apidocs/bjc/replpair/package-summary.html | 167 ++++++ docs/apidocs/bjc/replpair/package-tree.html | 146 +++++ docs/apidocs/bjc/replpair/package-use.html | 154 ++++++ 10 files changed, 2366 insertions(+) create mode 100644 docs/apidocs/bjc/replpair/ReplError.html create mode 100644 docs/apidocs/bjc/replpair/ReplPair.html create mode 100644 docs/apidocs/bjc/replpair/StageStatus.html create mode 100644 docs/apidocs/bjc/replpair/class-use/ReplError.html create mode 100644 docs/apidocs/bjc/replpair/class-use/ReplPair.html create mode 100644 docs/apidocs/bjc/replpair/class-use/StageStatus.html create mode 100644 docs/apidocs/bjc/replpair/package-frame.html create mode 100644 docs/apidocs/bjc/replpair/package-summary.html create mode 100644 docs/apidocs/bjc/replpair/package-tree.html create mode 100644 docs/apidocs/bjc/replpair/package-use.html (limited to 'docs/apidocs/bjc/replpair') diff --git a/docs/apidocs/bjc/replpair/ReplError.html b/docs/apidocs/bjc/replpair/ReplError.html new file mode 100644 index 0000000..b8ebed1 --- /dev/null +++ b/docs/apidocs/bjc/replpair/ReplError.html @@ -0,0 +1,383 @@ + + + + + + +ReplError (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
bjc.replpair
+

Class ReplError

+
+
+ +
+
    +
  • +
    +
    +
    public class ReplError
    +extends Object
    +
    Represents an error encountered parsing ReplPairs
    +
    +
    Author:
    +
    Ben Culkin
    +
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        line

        +
        public int line
        +
        The line the error occured on.
        +
      • +
      + + + +
        +
      • +

        numPairs

        +
        public int numPairs
        +
        The number of pairs we have processed so far.
        +
      • +
      + + + +
        +
      • +

        txt

        +
        public String txt
        +
        The text of the line we errored on.
        +
      • +
      + + + +
        +
      • +

        msg

        +
        public String msg
        +
        The message of the error.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ReplError

        +
        public ReplError(int lne,
        +                 int nPairs,
        +                 String msg,
        +                 String txt)
        +
        Create a new ReplPair parse error.
        +
        +
        Parameters:
        +
        lne - The line the error occured on.
        +
        nPairs - The number of pairs processed up to this point.
        +
        msg - The message detailing the error.
        +
        txt - The text that caused the error.
        +
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/replpair/ReplPair.html b/docs/apidocs/bjc/replpair/ReplPair.html new file mode 100644 index 0000000..a58db80 --- /dev/null +++ b/docs/apidocs/bjc/replpair/ReplPair.html @@ -0,0 +1,604 @@ + + + + + + +ReplPair (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
bjc.replpair
+

Class ReplPair

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        priority

        +
        public int priority
        +
        The priority for this replacement.
        +
      • +
      + + + +
        +
      • +

        name

        +
        public String name
        +
        The name of this replacement. + + Defaults to the 'find' string.
        +
      • +
      + + + +
        +
      • +

        find

        +
        public String find
        +
        The string to look for.
        +
      • +
      + + + +
        +
      • +

        replace

        +
        public String replace
        +
        The string to replace it with.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ReplPair

        +
        public ReplPair()
        +
        Create a new blank replacement pair.
        +
      • +
      + + + +
        +
      • +

        ReplPair

        +
        public ReplPair(String f,
        +                String r)
        +
        Create a new replacement pair with a priority of 1.
        +
        +
        Parameters:
        +
        f - The string to find.
        +
        r - The string to replace.
        +
        +
      • +
      + + + +
        +
      • +

        ReplPair

        +
        public ReplPair(String f,
        +                String r,
        +                String n)
        +
        Create a new named replacement pair with a priority of 1.
        +
        +
        Parameters:
        +
        f - The string to find.
        +
        r - The string to replace.
        +
        n - The name of the replacement pair.
        +
        +
      • +
      + + + +
        +
      • +

        ReplPair

        +
        public ReplPair(String f,
        +                String r,
        +                int p)
        +
        Create a new replacement pair with a set priority.
        +
        +
        Parameters:
        +
        f - The string to find.
        +
        r - The string to replace.
        +
        p - The priority for the replacement.
        +
        +
      • +
      + + + +
        +
      • +

        ReplPair

        +
        public ReplPair(String f,
        +                String r,
        +                int p,
        +                String n)
        +
        Create a new replacement pair with a set priority and name.
        +
        +
        Parameters:
        +
        f - The string to find.
        +
        r - The string to replace.
        +
        n - The name of the replacement pair.
        +
        p - The priority for the replacement.
        +
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        readList

        +
        public static List<ReplPair> readList(Scanner scn)
        +
        Read a list of replacement pairs from an input source.
        +
        +
        Parameters:
        +
        scn - The source to read the replacements from.
        +
        Returns:
        +
        The list of replacements.
        +
        +
      • +
      + + + +
        +
      • +

        readList

        +
        public static List<ReplPair> readList(List<ReplPair> detals,
        +                                      Scanner scn)
        +
        Read a list of replacement pairs from an input source, adding them to + an existing list.
        +
        +
        Parameters:
        +
        detals - The list to add the replacements to.
        +
        scn - The source to read the replacements from.
        +
        Returns:
        +
        The list of replacements.
        +
        +
      • +
      + + + +
        +
      • +

        readList

        +
        public static List<ReplPair> readList(List<ReplPair> detals,
        +                                      Scanner scn,
        +                                      List<ReplError> errs)
        +
        Read a list of replacement pairs from an input source, adding them to + an existing list.
        +
        +
        Parameters:
        +
        detals - The list to add the replacements to.
        +
        scn - The source to read the replacements from.
        +
        errs - The list to stick errors in.
        +
        Returns:
        +
        The list of replacements.
        +
        +
      • +
      + + + + + + + + + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/replpair/StageStatus.html b/docs/apidocs/bjc/replpair/StageStatus.html new file mode 100644 index 0000000..d645034 --- /dev/null +++ b/docs/apidocs/bjc/replpair/StageStatus.html @@ -0,0 +1,367 @@ + + + + + + +StageStatus (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
bjc.replpair
+

Enum StageStatus

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Detail

      + + + +
        +
      • +

        INTERNAL

        +
        public static final StageStatus INTERNAL
        +
        Only use for staging pairs; don't export.
        +
      • +
      + + + +
        +
      • +

        EXTERNAL

        +
        public static final StageStatus EXTERNAL
        +
        Don't use for staging pairs; do export.
        +
      • +
      + + + +
        +
      • +

        BOTH

        +
        public static final StageStatus BOTH
        +
        Use for staging pairs; do export.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static StageStatus[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (StageStatus c : StageStatus.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static StageStatus valueOf(String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        +
        Parameters:
        +
        name - the name of the enum constant to be returned.
        +
        Returns:
        +
        the enum constant with the specified name
        +
        Throws:
        +
        IllegalArgumentException - if this enum type has no constant with the specified name
        +
        NullPointerException - if the argument is null
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/replpair/class-use/ReplError.html b/docs/apidocs/bjc/replpair/class-use/ReplError.html new file mode 100644 index 0000000..3c97792 --- /dev/null +++ b/docs/apidocs/bjc/replpair/class-use/ReplError.html @@ -0,0 +1,154 @@ + + + + + + +Uses of Class bjc.replpair.ReplError (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
bjc.replpair.ReplError

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

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/replpair/class-use/ReplPair.html b/docs/apidocs/bjc/replpair/class-use/ReplPair.html new file mode 100644 index 0000000..fc7b09d --- /dev/null +++ b/docs/apidocs/bjc/replpair/class-use/ReplPair.html @@ -0,0 +1,207 @@ + + + + + + +Uses of Class bjc.replpair.ReplPair (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
bjc.replpair.ReplPair

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

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/replpair/class-use/StageStatus.html b/docs/apidocs/bjc/replpair/class-use/StageStatus.html new file mode 100644 index 0000000..fc25f62 --- /dev/null +++ b/docs/apidocs/bjc/replpair/class-use/StageStatus.html @@ -0,0 +1,158 @@ + + + + + + +Uses of Class bjc.replpair.StageStatus (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
bjc.replpair.StageStatus

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

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/replpair/package-frame.html b/docs/apidocs/bjc/replpair/package-frame.html new file mode 100644 index 0000000..73c65be --- /dev/null +++ b/docs/apidocs/bjc/replpair/package-frame.html @@ -0,0 +1,26 @@ + + + + + + +bjc.replpair (everge 1.0-SNAPSHOT API) + + + + + +

bjc.replpair

+
+

Classes

+ +

Enums

+ +
+ + diff --git a/docs/apidocs/bjc/replpair/package-summary.html b/docs/apidocs/bjc/replpair/package-summary.html new file mode 100644 index 0000000..21f2823 --- /dev/null +++ b/docs/apidocs/bjc/replpair/package-summary.html @@ -0,0 +1,167 @@ + + + + + + +bjc.replpair (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Package bjc.replpair

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

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/replpair/package-tree.html b/docs/apidocs/bjc/replpair/package-tree.html new file mode 100644 index 0000000..cd3dec6 --- /dev/null +++ b/docs/apidocs/bjc/replpair/package-tree.html @@ -0,0 +1,146 @@ + + + + + + +bjc.replpair Class Hierarchy (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package bjc.replpair

+
+
+

Class Hierarchy

+ +

Enum Hierarchy

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

Copyright © 2019. All rights reserved.

+ + diff --git a/docs/apidocs/bjc/replpair/package-use.html b/docs/apidocs/bjc/replpair/package-use.html new file mode 100644 index 0000000..cfedf53 --- /dev/null +++ b/docs/apidocs/bjc/replpair/package-use.html @@ -0,0 +1,154 @@ + + + + + + +Uses of Package bjc.replpair (everge 1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Package
bjc.replpair

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

Copyright © 2019. All rights reserved.

+ + -- cgit v1.2.3