From 3127e50947f9a91827d2d974336ddb0c2a4874c4 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Tue, 11 Jun 2019 22:58:54 -0400 Subject: Remove old site --- target/site/apidocs/bjc/replpair/ReplError.html | 383 ------------- target/site/apidocs/bjc/replpair/ReplPair.html | 604 --------------------- target/site/apidocs/bjc/replpair/StageStatus.html | 367 ------------- .../apidocs/bjc/replpair/class-use/ReplError.html | 154 ------ .../apidocs/bjc/replpair/class-use/ReplPair.html | 207 ------- .../bjc/replpair/class-use/StageStatus.html | 158 ------ .../site/apidocs/bjc/replpair/package-frame.html | 26 - .../site/apidocs/bjc/replpair/package-summary.html | 167 ------ target/site/apidocs/bjc/replpair/package-tree.html | 146 ----- target/site/apidocs/bjc/replpair/package-use.html | 154 ------ 10 files changed, 2366 deletions(-) delete mode 100644 target/site/apidocs/bjc/replpair/ReplError.html delete mode 100644 target/site/apidocs/bjc/replpair/ReplPair.html delete mode 100644 target/site/apidocs/bjc/replpair/StageStatus.html delete mode 100644 target/site/apidocs/bjc/replpair/class-use/ReplError.html delete mode 100644 target/site/apidocs/bjc/replpair/class-use/ReplPair.html delete mode 100644 target/site/apidocs/bjc/replpair/class-use/StageStatus.html delete mode 100644 target/site/apidocs/bjc/replpair/package-frame.html delete mode 100644 target/site/apidocs/bjc/replpair/package-summary.html delete mode 100644 target/site/apidocs/bjc/replpair/package-tree.html delete mode 100644 target/site/apidocs/bjc/replpair/package-use.html (limited to 'target/site/apidocs/bjc/replpair') diff --git a/target/site/apidocs/bjc/replpair/ReplError.html b/target/site/apidocs/bjc/replpair/ReplError.html deleted file mode 100644 index b8ebed1..0000000 --- a/target/site/apidocs/bjc/replpair/ReplError.html +++ /dev/null @@ -1,383 +0,0 @@ - - - - - - -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/target/site/apidocs/bjc/replpair/ReplPair.html b/target/site/apidocs/bjc/replpair/ReplPair.html deleted file mode 100644 index a58db80..0000000 --- a/target/site/apidocs/bjc/replpair/ReplPair.html +++ /dev/null @@ -1,604 +0,0 @@ - - - - - - -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/target/site/apidocs/bjc/replpair/StageStatus.html b/target/site/apidocs/bjc/replpair/StageStatus.html deleted file mode 100644 index d645034..0000000 --- a/target/site/apidocs/bjc/replpair/StageStatus.html +++ /dev/null @@ -1,367 +0,0 @@ - - - - - - -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/target/site/apidocs/bjc/replpair/class-use/ReplError.html b/target/site/apidocs/bjc/replpair/class-use/ReplError.html deleted file mode 100644 index 3c97792..0000000 --- a/target/site/apidocs/bjc/replpair/class-use/ReplError.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - -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/target/site/apidocs/bjc/replpair/class-use/ReplPair.html b/target/site/apidocs/bjc/replpair/class-use/ReplPair.html deleted file mode 100644 index fc7b09d..0000000 --- a/target/site/apidocs/bjc/replpair/class-use/ReplPair.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - -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/target/site/apidocs/bjc/replpair/class-use/StageStatus.html b/target/site/apidocs/bjc/replpair/class-use/StageStatus.html deleted file mode 100644 index fc25f62..0000000 --- a/target/site/apidocs/bjc/replpair/class-use/StageStatus.html +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - -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/target/site/apidocs/bjc/replpair/package-frame.html b/target/site/apidocs/bjc/replpair/package-frame.html deleted file mode 100644 index 73c65be..0000000 --- a/target/site/apidocs/bjc/replpair/package-frame.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - -bjc.replpair (everge 1.0-SNAPSHOT API) - - - - - -

bjc.replpair

-
-

Classes

- -

Enums

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

Package bjc.replpair

-
-
- -
- -
- - - - - - - -
- - -

Copyright © 2019. All rights reserved.

- - diff --git a/target/site/apidocs/bjc/replpair/package-tree.html b/target/site/apidocs/bjc/replpair/package-tree.html deleted file mode 100644 index cd3dec6..0000000 --- a/target/site/apidocs/bjc/replpair/package-tree.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - -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/target/site/apidocs/bjc/replpair/package-use.html b/target/site/apidocs/bjc/replpair/package-use.html deleted file mode 100644 index cfedf53..0000000 --- a/target/site/apidocs/bjc/replpair/package-use.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - -Uses of Package bjc.replpair (everge 1.0-SNAPSHOT API) - - - - - - - - -
- - - - - - - -
- - -
-

Uses of Package
bjc.replpair

-
-
- -
- -
- - - - - - - -
- - -

Copyright © 2019. All rights reserved.

- - -- cgit v1.2.3