From 0f452524b0f3232eb64c9301cec78634f9fed0ee Mon Sep 17 00:00:00 2001 From: Luke Spragg Date: Tue, 15 Sep 2015 19:04:37 -0400 Subject: [PATCH 1/2] Initial commit --- allclasses-frame.html | 35 ++ allclasses-noframe.html | 35 ++ com/flowpowered/plugins/Context.html | 274 +++++++++ .../ContextCreator.NoContextCreator.html | 337 ++++++++++ com/flowpowered/plugins/ContextCreator.html | 246 ++++++++ .../plugins/InvalidPluginException.html | 290 +++++++++ com/flowpowered/plugins/Plugin.html | 401 ++++++++++++ .../plugins/PluginClassLoader.html | 390 ++++++++++++ com/flowpowered/plugins/PluginLoader.html | 359 +++++++++++ .../plugins/PluginLoggerFactory.html | 223 +++++++ com/flowpowered/plugins/PluginManager.html | 388 ++++++++++++ com/flowpowered/plugins/PluginState.html | 367 +++++++++++ .../plugins/annotated/AnnotatedPlugin.html | 325 ++++++++++ .../annotated/AnnotatedPluginLoader.html | 408 +++++++++++++ .../plugins/annotated/Disable.html | 167 +++++ com/flowpowered/plugins/annotated/Enable.html | 167 +++++ com/flowpowered/plugins/annotated/Plugin.html | 215 +++++++ .../annotated/class-use/AnnotatedPlugin.html | 192 ++++++ .../class-use/AnnotatedPluginLoader.html | 126 ++++ .../plugins/annotated/class-use/Disable.html | 126 ++++ .../plugins/annotated/class-use/Enable.html | 126 ++++ .../plugins/annotated/class-use/Plugin.html | 169 ++++++ .../plugins/annotated/package-frame.html | 28 + .../plugins/annotated/package-summary.html | 171 ++++++ .../plugins/annotated/package-tree.html | 154 +++++ .../plugins/annotated/package-use.html | 162 +++++ .../plugins/class-use/Context.html | 279 +++++++++ .../ContextCreator.NoContextCreator.html | 166 +++++ .../plugins/class-use/ContextCreator.html | 232 +++++++ .../class-use/InvalidPluginException.html | 226 +++++++ com/flowpowered/plugins/class-use/Plugin.html | 352 +++++++++++ .../plugins/class-use/PluginClassLoader.html | 126 ++++ .../plugins/class-use/PluginLoader.html | 210 +++++++ .../class-use/PluginLoggerFactory.html | 178 ++++++ .../plugins/class-use/PluginManager.html | 264 ++++++++ .../plugins/class-use/PluginState.html | 183 ++++++ com/flowpowered/plugins/package-frame.html | 39 ++ com/flowpowered/plugins/package-summary.html | 215 +++++++ com/flowpowered/plugins/package-tree.html | 182 ++++++ com/flowpowered/plugins/package-use.html | 257 ++++++++ .../plugins/simple/SimplePluginLoader.html | 397 ++++++++++++ .../simple/class-use/SimplePluginLoader.html | 126 ++++ .../plugins/simple/package-frame.html | 21 + .../plugins/simple/package-summary.html | 144 +++++ .../plugins/simple/package-tree.html | 143 +++++ .../plugins/simple/package-use.html | 126 ++++ constant-values.html | 126 ++++ deprecated-list.html | 126 ++++ help-doc.html | 231 +++++++ index-all.html | 380 ++++++++++++ index.html | 75 +++ overview-frame.html | 24 + overview-summary.html | 148 +++++ overview-tree.html | 199 ++++++ package-list | 3 + script.js | 30 + serialized-form.html | 143 +++++ stylesheet.css | 574 ++++++++++++++++++ 58 files changed, 11806 insertions(+) create mode 100644 allclasses-frame.html create mode 100644 allclasses-noframe.html create mode 100644 com/flowpowered/plugins/Context.html create mode 100644 com/flowpowered/plugins/ContextCreator.NoContextCreator.html create mode 100644 com/flowpowered/plugins/ContextCreator.html create mode 100644 com/flowpowered/plugins/InvalidPluginException.html create mode 100644 com/flowpowered/plugins/Plugin.html create mode 100644 com/flowpowered/plugins/PluginClassLoader.html create mode 100644 com/flowpowered/plugins/PluginLoader.html create mode 100644 com/flowpowered/plugins/PluginLoggerFactory.html create mode 100644 com/flowpowered/plugins/PluginManager.html create mode 100644 com/flowpowered/plugins/PluginState.html create mode 100644 com/flowpowered/plugins/annotated/AnnotatedPlugin.html create mode 100644 com/flowpowered/plugins/annotated/AnnotatedPluginLoader.html create mode 100644 com/flowpowered/plugins/annotated/Disable.html create mode 100644 com/flowpowered/plugins/annotated/Enable.html create mode 100644 com/flowpowered/plugins/annotated/Plugin.html create mode 100644 com/flowpowered/plugins/annotated/class-use/AnnotatedPlugin.html create mode 100644 com/flowpowered/plugins/annotated/class-use/AnnotatedPluginLoader.html create mode 100644 com/flowpowered/plugins/annotated/class-use/Disable.html create mode 100644 com/flowpowered/plugins/annotated/class-use/Enable.html create mode 100644 com/flowpowered/plugins/annotated/class-use/Plugin.html create mode 100644 com/flowpowered/plugins/annotated/package-frame.html create mode 100644 com/flowpowered/plugins/annotated/package-summary.html create mode 100644 com/flowpowered/plugins/annotated/package-tree.html create mode 100644 com/flowpowered/plugins/annotated/package-use.html create mode 100644 com/flowpowered/plugins/class-use/Context.html create mode 100644 com/flowpowered/plugins/class-use/ContextCreator.NoContextCreator.html create mode 100644 com/flowpowered/plugins/class-use/ContextCreator.html create mode 100644 com/flowpowered/plugins/class-use/InvalidPluginException.html create mode 100644 com/flowpowered/plugins/class-use/Plugin.html create mode 100644 com/flowpowered/plugins/class-use/PluginClassLoader.html create mode 100644 com/flowpowered/plugins/class-use/PluginLoader.html create mode 100644 com/flowpowered/plugins/class-use/PluginLoggerFactory.html create mode 100644 com/flowpowered/plugins/class-use/PluginManager.html create mode 100644 com/flowpowered/plugins/class-use/PluginState.html create mode 100644 com/flowpowered/plugins/package-frame.html create mode 100644 com/flowpowered/plugins/package-summary.html create mode 100644 com/flowpowered/plugins/package-tree.html create mode 100644 com/flowpowered/plugins/package-use.html create mode 100644 com/flowpowered/plugins/simple/SimplePluginLoader.html create mode 100644 com/flowpowered/plugins/simple/class-use/SimplePluginLoader.html create mode 100644 com/flowpowered/plugins/simple/package-frame.html create mode 100644 com/flowpowered/plugins/simple/package-summary.html create mode 100644 com/flowpowered/plugins/simple/package-tree.html create mode 100644 com/flowpowered/plugins/simple/package-use.html create mode 100644 constant-values.html create mode 100644 deprecated-list.html create mode 100644 help-doc.html create mode 100644 index-all.html create mode 100644 index.html create mode 100644 overview-frame.html create mode 100644 overview-summary.html create mode 100644 overview-tree.html create mode 100644 package-list create mode 100644 script.js create mode 100644 serialized-form.html create mode 100644 stylesheet.css diff --git a/allclasses-frame.html b/allclasses-frame.html new file mode 100644 index 0000000..c6e79bc --- /dev/null +++ b/allclasses-frame.html @@ -0,0 +1,35 @@ + + + + + + +All Classes (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/allclasses-noframe.html b/allclasses-noframe.html new file mode 100644 index 0000000..ce6144d --- /dev/null +++ b/allclasses-noframe.html @@ -0,0 +1,35 @@ + + + + + + +All Classes (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + +

All Classes

+
+ +
+ + diff --git a/com/flowpowered/plugins/Context.html b/com/flowpowered/plugins/Context.html new file mode 100644 index 0000000..fe2c48b --- /dev/null +++ b/com/flowpowered/plugins/Context.html @@ -0,0 +1,274 @@ + + + + + + +Context (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Class Context

+
+
+ +
+
    +
  • +
    +
    +
    public class Context
    +extends Object
    +
    Holds a link to the Plugin but also is used to hold broader information about what holds the Plugin (e.g. an engine).
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Context

        +
        public Context(Plugin<?> plugin)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getPlugin

        +
        public <P extends Plugin<? extends Context>> P getPlugin()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/ContextCreator.NoContextCreator.html b/com/flowpowered/plugins/ContextCreator.NoContextCreator.html new file mode 100644 index 0000000..95c1b46 --- /dev/null +++ b/com/flowpowered/plugins/ContextCreator.NoContextCreator.html @@ -0,0 +1,337 @@ + + + + + + +ContextCreator.NoContextCreator (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Class ContextCreator.NoContextCreator

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/ContextCreator.html b/com/flowpowered/plugins/ContextCreator.html new file mode 100644 index 0000000..75c01aa --- /dev/null +++ b/com/flowpowered/plugins/ContextCreator.html @@ -0,0 +1,246 @@ + + + + + + +ContextCreator (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Interface ContextCreator<C extends Context>

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

      Method Detail

      + + + +
        +
      • +

        createContext

        +
        C createContext(Plugin<C> plugin)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/InvalidPluginException.html b/com/flowpowered/plugins/InvalidPluginException.html new file mode 100644 index 0000000..436a705 --- /dev/null +++ b/com/flowpowered/plugins/InvalidPluginException.html @@ -0,0 +1,290 @@ + + + + + + +InvalidPluginException (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Class InvalidPluginException

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

      Constructor Detail

      + + + +
        +
      • +

        InvalidPluginException

        +
        public InvalidPluginException()
        +
      • +
      + + + +
        +
      • +

        InvalidPluginException

        +
        public InvalidPluginException(String message)
        +
      • +
      + + + +
        +
      • +

        InvalidPluginException

        +
        public InvalidPluginException(String message,
        +                              Throwable cause)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/Plugin.html b/com/flowpowered/plugins/Plugin.html new file mode 100644 index 0000000..060ead0 --- /dev/null +++ b/com/flowpowered/plugins/Plugin.html @@ -0,0 +1,401 @@ + + + + + + +Plugin (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Class Plugin<C extends Context>

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

      Constructor Detail

      + + + +
        +
      • +

        Plugin

        +
        public Plugin()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/PluginClassLoader.html b/com/flowpowered/plugins/PluginClassLoader.html new file mode 100644 index 0000000..5a6216b --- /dev/null +++ b/com/flowpowered/plugins/PluginClassLoader.html @@ -0,0 +1,390 @@ + + + + + + +PluginClassLoader (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Class PluginClassLoader

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/PluginLoader.html b/com/flowpowered/plugins/PluginLoader.html new file mode 100644 index 0000000..fe81f8c --- /dev/null +++ b/com/flowpowered/plugins/PluginLoader.html @@ -0,0 +1,359 @@ + + + + + + +PluginLoader (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Class PluginLoader<C extends Context>

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/PluginLoggerFactory.html b/com/flowpowered/plugins/PluginLoggerFactory.html new file mode 100644 index 0000000..34c3378 --- /dev/null +++ b/com/flowpowered/plugins/PluginLoggerFactory.html @@ -0,0 +1,223 @@ + + + + + + +PluginLoggerFactory (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Interface PluginLoggerFactory

+
+
+
+
    +
  • +
    +
    +
    public interface PluginLoggerFactory
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getLogger

        +
        org.slf4j.Logger getLogger(String pluginName)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/PluginManager.html b/com/flowpowered/plugins/PluginManager.html new file mode 100644 index 0000000..5a4e7e9 --- /dev/null +++ b/com/flowpowered/plugins/PluginManager.html @@ -0,0 +1,388 @@ + + + + + + +PluginManager (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Class PluginManager<C extends Context>

+
+
+ +
+
    +
  • +
    +
    +
    public class PluginManager<C extends Context>
    +extends Object
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/PluginState.html b/com/flowpowered/plugins/PluginState.html new file mode 100644 index 0000000..e760ae2 --- /dev/null +++ b/com/flowpowered/plugins/PluginState.html @@ -0,0 +1,367 @@ + + + + + + +PluginState (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins
+

Enum PluginState

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

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static PluginState[] 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 (PluginState c : PluginState.values())
        +    System.out.println(c);
        +
        +
        +
        Returns:
        +
        an array containing the constants of this enum type, in the order they are declared
        +
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static PluginState 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 © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/AnnotatedPlugin.html b/com/flowpowered/plugins/annotated/AnnotatedPlugin.html new file mode 100644 index 0000000..3af5710 --- /dev/null +++ b/com/flowpowered/plugins/annotated/AnnotatedPlugin.html @@ -0,0 +1,325 @@ + + + + + + +AnnotatedPlugin (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins.annotated
+

Class AnnotatedPlugin<C extends Context>

+
+
+ +
+
    +
  • +
    +
    +
    public class AnnotatedPlugin<C extends Context>
    +extends Plugin<C>
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/AnnotatedPluginLoader.html b/com/flowpowered/plugins/annotated/AnnotatedPluginLoader.html new file mode 100644 index 0000000..82d7a5c --- /dev/null +++ b/com/flowpowered/plugins/annotated/AnnotatedPluginLoader.html @@ -0,0 +1,408 @@ + + + + + + +AnnotatedPluginLoader (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins.annotated
+

Class AnnotatedPluginLoader<C extends Context>

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/Disable.html b/com/flowpowered/plugins/annotated/Disable.html new file mode 100644 index 0000000..711d762 --- /dev/null +++ b/com/flowpowered/plugins/annotated/Disable.html @@ -0,0 +1,167 @@ + + + + + + +Disable (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins.annotated
+

Annotation Type Disable

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/Enable.html b/com/flowpowered/plugins/annotated/Enable.html new file mode 100644 index 0000000..7b94eed --- /dev/null +++ b/com/flowpowered/plugins/annotated/Enable.html @@ -0,0 +1,167 @@ + + + + + + +Enable (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins.annotated
+

Annotation Type Enable

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/Plugin.html b/com/flowpowered/plugins/annotated/Plugin.html new file mode 100644 index 0000000..9fb6068 --- /dev/null +++ b/com/flowpowered/plugins/annotated/Plugin.html @@ -0,0 +1,215 @@ + + + + + + +Plugin (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins.annotated
+

Annotation Type Plugin

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

      Required Element Summary

      + + + + + + + + + + +
      Required Elements 
      Modifier and TypeRequired Element and Description
      Stringname 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        name

        +
        public abstract String name
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/class-use/AnnotatedPlugin.html b/com/flowpowered/plugins/annotated/class-use/AnnotatedPlugin.html new file mode 100644 index 0000000..878eaf5 --- /dev/null +++ b/com/flowpowered/plugins/annotated/class-use/AnnotatedPlugin.html @@ -0,0 +1,192 @@ + + + + + + +Uses of Class com.flowpowered.plugins.annotated.AnnotatedPlugin (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.annotated.AnnotatedPlugin

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/class-use/AnnotatedPluginLoader.html b/com/flowpowered/plugins/annotated/class-use/AnnotatedPluginLoader.html new file mode 100644 index 0000000..6aef1b1 --- /dev/null +++ b/com/flowpowered/plugins/annotated/class-use/AnnotatedPluginLoader.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class com.flowpowered.plugins.annotated.AnnotatedPluginLoader (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.annotated.AnnotatedPluginLoader

+
+
No usage of com.flowpowered.plugins.annotated.AnnotatedPluginLoader
+ +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/class-use/Disable.html b/com/flowpowered/plugins/annotated/class-use/Disable.html new file mode 100644 index 0000000..0de7bc7 --- /dev/null +++ b/com/flowpowered/plugins/annotated/class-use/Disable.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class com.flowpowered.plugins.annotated.Disable (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.annotated.Disable

+
+
No usage of com.flowpowered.plugins.annotated.Disable
+ +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/class-use/Enable.html b/com/flowpowered/plugins/annotated/class-use/Enable.html new file mode 100644 index 0000000..9d77436 --- /dev/null +++ b/com/flowpowered/plugins/annotated/class-use/Enable.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class com.flowpowered.plugins.annotated.Enable (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.annotated.Enable

+
+
No usage of com.flowpowered.plugins.annotated.Enable
+ +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/class-use/Plugin.html b/com/flowpowered/plugins/annotated/class-use/Plugin.html new file mode 100644 index 0000000..456824c --- /dev/null +++ b/com/flowpowered/plugins/annotated/class-use/Plugin.html @@ -0,0 +1,169 @@ + + + + + + +Uses of Class com.flowpowered.plugins.annotated.Plugin (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.annotated.Plugin

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/package-frame.html b/com/flowpowered/plugins/annotated/package-frame.html new file mode 100644 index 0000000..6608c78 --- /dev/null +++ b/com/flowpowered/plugins/annotated/package-frame.html @@ -0,0 +1,28 @@ + + + + + + +com.flowpowered.plugins.annotated (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + +

com.flowpowered.plugins.annotated

+
+

Classes

+ +

Annotation Types

+ +
+ + diff --git a/com/flowpowered/plugins/annotated/package-summary.html b/com/flowpowered/plugins/annotated/package-summary.html new file mode 100644 index 0000000..66fca77 --- /dev/null +++ b/com/flowpowered/plugins/annotated/package-summary.html @@ -0,0 +1,171 @@ + + + + + + +com.flowpowered.plugins.annotated (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Package com.flowpowered.plugins.annotated

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/package-tree.html b/com/flowpowered/plugins/annotated/package-tree.html new file mode 100644 index 0000000..6630494 --- /dev/null +++ b/com/flowpowered/plugins/annotated/package-tree.html @@ -0,0 +1,154 @@ + + + + + + +com.flowpowered.plugins.annotated Class Hierarchy (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package com.flowpowered.plugins.annotated

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Annotation Type Hierarchy

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/annotated/package-use.html b/com/flowpowered/plugins/annotated/package-use.html new file mode 100644 index 0000000..54f7536 --- /dev/null +++ b/com/flowpowered/plugins/annotated/package-use.html @@ -0,0 +1,162 @@ + + + + + + +Uses of Package com.flowpowered.plugins.annotated (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Package
com.flowpowered.plugins.annotated

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/Context.html b/com/flowpowered/plugins/class-use/Context.html new file mode 100644 index 0000000..1040a6f --- /dev/null +++ b/com/flowpowered/plugins/class-use/Context.html @@ -0,0 +1,279 @@ + + + + + + +Uses of Class com.flowpowered.plugins.Context (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.Context

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/ContextCreator.NoContextCreator.html b/com/flowpowered/plugins/class-use/ContextCreator.NoContextCreator.html new file mode 100644 index 0000000..39324c9 --- /dev/null +++ b/com/flowpowered/plugins/class-use/ContextCreator.NoContextCreator.html @@ -0,0 +1,166 @@ + + + + + + +Uses of Class com.flowpowered.plugins.ContextCreator.NoContextCreator (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.ContextCreator.NoContextCreator

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/ContextCreator.html b/com/flowpowered/plugins/class-use/ContextCreator.html new file mode 100644 index 0000000..bd80cfd --- /dev/null +++ b/com/flowpowered/plugins/class-use/ContextCreator.html @@ -0,0 +1,232 @@ + + + + + + +Uses of Interface com.flowpowered.plugins.ContextCreator (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Interface
com.flowpowered.plugins.ContextCreator

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/InvalidPluginException.html b/com/flowpowered/plugins/class-use/InvalidPluginException.html new file mode 100644 index 0000000..f58f2de --- /dev/null +++ b/com/flowpowered/plugins/class-use/InvalidPluginException.html @@ -0,0 +1,226 @@ + + + + + + +Uses of Class com.flowpowered.plugins.InvalidPluginException (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.InvalidPluginException

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/Plugin.html b/com/flowpowered/plugins/class-use/Plugin.html new file mode 100644 index 0000000..6d7a5d1 --- /dev/null +++ b/com/flowpowered/plugins/class-use/Plugin.html @@ -0,0 +1,352 @@ + + + + + + +Uses of Class com.flowpowered.plugins.Plugin (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.Plugin

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/PluginClassLoader.html b/com/flowpowered/plugins/class-use/PluginClassLoader.html new file mode 100644 index 0000000..6209612 --- /dev/null +++ b/com/flowpowered/plugins/class-use/PluginClassLoader.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class com.flowpowered.plugins.PluginClassLoader (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.PluginClassLoader

+
+
No usage of com.flowpowered.plugins.PluginClassLoader
+ +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/PluginLoader.html b/com/flowpowered/plugins/class-use/PluginLoader.html new file mode 100644 index 0000000..501248d --- /dev/null +++ b/com/flowpowered/plugins/class-use/PluginLoader.html @@ -0,0 +1,210 @@ + + + + + + +Uses of Class com.flowpowered.plugins.PluginLoader (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.PluginLoader

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/PluginLoggerFactory.html b/com/flowpowered/plugins/class-use/PluginLoggerFactory.html new file mode 100644 index 0000000..03358f2 --- /dev/null +++ b/com/flowpowered/plugins/class-use/PluginLoggerFactory.html @@ -0,0 +1,178 @@ + + + + + + +Uses of Interface com.flowpowered.plugins.PluginLoggerFactory (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Interface
com.flowpowered.plugins.PluginLoggerFactory

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/PluginManager.html b/com/flowpowered/plugins/class-use/PluginManager.html new file mode 100644 index 0000000..daf031d --- /dev/null +++ b/com/flowpowered/plugins/class-use/PluginManager.html @@ -0,0 +1,264 @@ + + + + + + +Uses of Class com.flowpowered.plugins.PluginManager (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.PluginManager

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/class-use/PluginState.html b/com/flowpowered/plugins/class-use/PluginState.html new file mode 100644 index 0000000..4beec41 --- /dev/null +++ b/com/flowpowered/plugins/class-use/PluginState.html @@ -0,0 +1,183 @@ + + + + + + +Uses of Class com.flowpowered.plugins.PluginState (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.PluginState

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/package-frame.html b/com/flowpowered/plugins/package-frame.html new file mode 100644 index 0000000..a0b6e2a --- /dev/null +++ b/com/flowpowered/plugins/package-frame.html @@ -0,0 +1,39 @@ + + + + + + +com.flowpowered.plugins (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + +

com.flowpowered.plugins

+
+

Interfaces

+ +

Classes

+ +

Enums

+ +

Exceptions

+ +
+ + diff --git a/com/flowpowered/plugins/package-summary.html b/com/flowpowered/plugins/package-summary.html new file mode 100644 index 0000000..a805c92 --- /dev/null +++ b/com/flowpowered/plugins/package-summary.html @@ -0,0 +1,215 @@ + + + + + + +com.flowpowered.plugins (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Package com.flowpowered.plugins

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/package-tree.html b/com/flowpowered/plugins/package-tree.html new file mode 100644 index 0000000..f36ccd5 --- /dev/null +++ b/com/flowpowered/plugins/package-tree.html @@ -0,0 +1,182 @@ + + + + + + +com.flowpowered.plugins Class Hierarchy (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package com.flowpowered.plugins

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Enum Hierarchy

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/package-use.html b/com/flowpowered/plugins/package-use.html new file mode 100644 index 0000000..c221aa9 --- /dev/null +++ b/com/flowpowered/plugins/package-use.html @@ -0,0 +1,257 @@ + + + + + + +Uses of Package com.flowpowered.plugins (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Package
com.flowpowered.plugins

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/simple/SimplePluginLoader.html b/com/flowpowered/plugins/simple/SimplePluginLoader.html new file mode 100644 index 0000000..fb499d5 --- /dev/null +++ b/com/flowpowered/plugins/simple/SimplePluginLoader.html @@ -0,0 +1,397 @@ + + + + + + +SimplePluginLoader (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.flowpowered.plugins.simple
+

Class SimplePluginLoader<C extends Context>

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/simple/class-use/SimplePluginLoader.html b/com/flowpowered/plugins/simple/class-use/SimplePluginLoader.html new file mode 100644 index 0000000..0b99683 --- /dev/null +++ b/com/flowpowered/plugins/simple/class-use/SimplePluginLoader.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Class com.flowpowered.plugins.simple.SimplePluginLoader (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Class
com.flowpowered.plugins.simple.SimplePluginLoader

+
+
No usage of com.flowpowered.plugins.simple.SimplePluginLoader
+ +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/simple/package-frame.html b/com/flowpowered/plugins/simple/package-frame.html new file mode 100644 index 0000000..2dd6266 --- /dev/null +++ b/com/flowpowered/plugins/simple/package-frame.html @@ -0,0 +1,21 @@ + + + + + + +com.flowpowered.plugins.simple (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + +

com.flowpowered.plugins.simple

+
+

Classes

+ +
+ + diff --git a/com/flowpowered/plugins/simple/package-summary.html b/com/flowpowered/plugins/simple/package-summary.html new file mode 100644 index 0000000..d100b54 --- /dev/null +++ b/com/flowpowered/plugins/simple/package-summary.html @@ -0,0 +1,144 @@ + + + + + + +com.flowpowered.plugins.simple (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Package com.flowpowered.plugins.simple

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/simple/package-tree.html b/com/flowpowered/plugins/simple/package-tree.html new file mode 100644 index 0000000..301a232 --- /dev/null +++ b/com/flowpowered/plugins/simple/package-tree.html @@ -0,0 +1,143 @@ + + + + + + +com.flowpowered.plugins.simple Class Hierarchy (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package com.flowpowered.plugins.simple

+Package Hierarchies: + +
+
+

Class Hierarchy

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/com/flowpowered/plugins/simple/package-use.html b/com/flowpowered/plugins/simple/package-use.html new file mode 100644 index 0000000..55feb23 --- /dev/null +++ b/com/flowpowered/plugins/simple/package-use.html @@ -0,0 +1,126 @@ + + + + + + +Uses of Package com.flowpowered.plugins.simple (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Uses of Package
com.flowpowered.plugins.simple

+
+
No usage of com.flowpowered.plugins.simple
+ +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/constant-values.html b/constant-values.html new file mode 100644 index 0000000..a92417f --- /dev/null +++ b/constant-values.html @@ -0,0 +1,126 @@ + + + + + + +Constant Field Values (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Constant Field Values

+

Contents

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/deprecated-list.html b/deprecated-list.html new file mode 100644 index 0000000..4f274fa --- /dev/null +++ b/deprecated-list.html @@ -0,0 +1,126 @@ + + + + + + +Deprecated List (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Deprecated API

+

Contents

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/help-doc.html b/help-doc.html new file mode 100644 index 0000000..84cf254 --- /dev/null +++ b/help-doc.html @@ -0,0 +1,231 @@ + + + + + + +API Help (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

How This API Document Is Organized

+
This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.
+
+
+ +This help file applies to API documentation generated using the standard doclet.
+ +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/index-all.html b/index-all.html new file mode 100644 index 0000000..929c0a4 --- /dev/null +++ b/index-all.html @@ -0,0 +1,380 @@ + + + + + + +Index (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
A C D E F G I L N O P S V  + + +

A

+
+
addLoader(PluginLoader<C>) - Method in class com.flowpowered.plugins.PluginManager
+
 
+
addURL(URL) - Method in class com.flowpowered.plugins.PluginClassLoader
+
 
+
AnnotatedPlugin<C extends Context> - Class in com.flowpowered.plugins.annotated
+
 
+
AnnotatedPlugin() - Constructor for class com.flowpowered.plugins.annotated.AnnotatedPlugin
+
 
+
AnnotatedPluginLoader<C extends Context> - Class in com.flowpowered.plugins.annotated
+
 
+
AnnotatedPluginLoader(ContextCreator<C>, Path, ClassLoader) - Constructor for class com.flowpowered.plugins.annotated.AnnotatedPluginLoader
+
 
+
+ + + +

C

+
+
com.flowpowered.plugins - package com.flowpowered.plugins
+
 
+
com.flowpowered.plugins.annotated - package com.flowpowered.plugins.annotated
+
 
+
com.flowpowered.plugins.simple - package com.flowpowered.plugins.simple
+
 
+
Context - Class in com.flowpowered.plugins
+
+
Holds a link to the Plugin but also is used to hold broader information about what holds the Plugin (e.g.
+
+
Context(Plugin<?>) - Constructor for class com.flowpowered.plugins.Context
+
 
+
ContextCreator<C extends Context> - Interface in com.flowpowered.plugins
+
 
+
ContextCreator.NoContextCreator - Class in com.flowpowered.plugins
+
 
+
createContext(Plugin<C>) - Method in interface com.flowpowered.plugins.ContextCreator
+
 
+
createContext(Plugin<Context>) - Method in class com.flowpowered.plugins.ContextCreator.NoContextCreator
+
 
+
createContext(Plugin<C>) - Method in class com.flowpowered.plugins.PluginLoader
+
 
+
+ + + +

D

+
+
defaultPluginLoggerFactory(Logger) - Static method in class com.flowpowered.plugins.PluginManager
+
 
+
defineClass(byte[]) - Method in class com.flowpowered.plugins.PluginClassLoader
+
 
+
Disable - Annotation Type in com.flowpowered.plugins.annotated
+
 
+
disable() - Method in class com.flowpowered.plugins.Plugin
+
 
+
disable(Plugin<C>) - Method in class com.flowpowered.plugins.PluginManager
+
 
+
+ + + +

E

+
+
Enable - Annotation Type in com.flowpowered.plugins.annotated
+
 
+
enable() - Method in class com.flowpowered.plugins.Plugin
+
 
+
enable(Plugin<C>) - Method in class com.flowpowered.plugins.PluginManager
+
 
+
+ + + +

F

+
+
find(URL, ClassLoader) - Static method in class com.flowpowered.plugins.annotated.AnnotatedPluginLoader
+
 
+
findClass(String) - Method in class com.flowpowered.plugins.PluginClassLoader
+
 
+
findMains() - Method in class com.flowpowered.plugins.simple.SimplePluginLoader
+
 
+
+ + + +

G

+
+
getAnnotated() - Method in class com.flowpowered.plugins.annotated.AnnotatedPlugin
+
 
+
getClasses() - Method in class com.flowpowered.plugins.PluginClassLoader
+
+
Returns a set of cached classes
+
+
getClassLoader() - Method in class com.flowpowered.plugins.simple.SimplePluginLoader
+
 
+
getClassNames() - Method in class com.flowpowered.plugins.PluginClassLoader
+
+
Returns a set of cached classes' names
+
+
getContext() - Method in class com.flowpowered.plugins.Plugin
+
 
+
getFieldSilent(Class<?>, String) - Static method in class com.flowpowered.plugins.PluginLoader
+
 
+
getLogger() - Method in class com.flowpowered.plugins.Plugin
+
 
+
getLogger(String) - Method in interface com.flowpowered.plugins.PluginLoggerFactory
+
 
+
getLogger(Plugin<C>) - Method in class com.flowpowered.plugins.PluginManager
+
 
+
getManager() - Method in class com.flowpowered.plugins.Plugin
+
 
+
getName() - Method in class com.flowpowered.plugins.Plugin
+
 
+
getPath() - Method in class com.flowpowered.plugins.annotated.AnnotatedPluginLoader
+
 
+
getPlugin() - Method in class com.flowpowered.plugins.Context
+
 
+
getPlugin(String) - Method in class com.flowpowered.plugins.PluginManager
+
 
+
getPlugins() - Method in class com.flowpowered.plugins.PluginManager
+
 
+
getState() - Method in class com.flowpowered.plugins.Plugin
+
 
+
getState(Plugin<C>) - Method in class com.flowpowered.plugins.PluginManager
+
 
+
+ + + +

I

+
+
init(AnnotatedPlugin<C>, String, PluginManager<C>, Object) - Method in class com.flowpowered.plugins.annotated.AnnotatedPluginLoader
+
 
+
init(Plugin<C>, String, PluginManager<C>) - Method in class com.flowpowered.plugins.PluginLoader
+
 
+
INSTANCE - Static variable in class com.flowpowered.plugins.ContextCreator.NoContextCreator
+
 
+
InvalidPluginException - Exception in com.flowpowered.plugins
+
 
+
InvalidPluginException() - Constructor for exception com.flowpowered.plugins.InvalidPluginException
+
 
+
InvalidPluginException(String) - Constructor for exception com.flowpowered.plugins.InvalidPluginException
+
 
+
InvalidPluginException(String, Throwable) - Constructor for exception com.flowpowered.plugins.InvalidPluginException
+
 
+
+ + + +

L

+
+
load(PluginManager<C>, Plugin, Class<?>, ClassLoader) - Method in class com.flowpowered.plugins.annotated.AnnotatedPluginLoader
+
 
+
load(PluginManager<C>, String) - Method in class com.flowpowered.plugins.annotated.AnnotatedPluginLoader
+
 
+
load(PluginManager<C>, String) - Method in class com.flowpowered.plugins.PluginLoader
+
 
+
load(PluginManager<C>, String) - Method in class com.flowpowered.plugins.simple.SimplePluginLoader
+
 
+
load(PluginManager<C>, String, Map<String, String>) - Method in class com.flowpowered.plugins.simple.SimplePluginLoader
+
 
+
loadAll(PluginManager<C>) - Method in class com.flowpowered.plugins.annotated.AnnotatedPluginLoader
+
 
+
loadAll(PluginManager<C>) - Method in class com.flowpowered.plugins.PluginLoader
+
 
+
loadAll(PluginManager<C>) - Method in class com.flowpowered.plugins.simple.SimplePluginLoader
+
 
+
+ + + +

N

+
+
NoContextCreator() - Constructor for class com.flowpowered.plugins.ContextCreator.NoContextCreator
+
 
+
+ + + +

O

+
+
onDisable() - Method in class com.flowpowered.plugins.annotated.AnnotatedPlugin
+
 
+
onDisable() - Method in class com.flowpowered.plugins.Plugin
+
 
+
onEnable() - Method in class com.flowpowered.plugins.annotated.AnnotatedPlugin
+
 
+
onEnable() - Method in class com.flowpowered.plugins.Plugin
+
 
+
+ + + +

P

+
+
Plugin - Annotation Type in com.flowpowered.plugins.annotated
+
 
+
Plugin<C extends Context> - Class in com.flowpowered.plugins
+
 
+
Plugin() - Constructor for class com.flowpowered.plugins.Plugin
+
 
+
PluginClassLoader - Class in com.flowpowered.plugins
+
 
+
PluginClassLoader(ClassLoader) - Constructor for class com.flowpowered.plugins.PluginClassLoader
+
 
+
PluginLoader<C extends Context> - Class in com.flowpowered.plugins
+
 
+
PluginLoader(ContextCreator<C>) - Constructor for class com.flowpowered.plugins.PluginLoader
+
 
+
PluginLoggerFactory - Interface in com.flowpowered.plugins
+
 
+
PluginManager<C extends Context> - Class in com.flowpowered.plugins
+
 
+
PluginManager(Logger, PluginLoggerFactory) - Constructor for class com.flowpowered.plugins.PluginManager
+
 
+
PluginManager(Logger) - Constructor for class com.flowpowered.plugins.PluginManager
+
 
+
PluginState - Enum in com.flowpowered.plugins
+
 
+
+ + + +

S

+
+
setField(Field, Object, Object) - Static method in class com.flowpowered.plugins.PluginLoader
+
 
+
SimplePluginLoader<C extends Context> - Class in com.flowpowered.plugins.simple
+
 
+
SimplePluginLoader(ContextCreator<C>, ClassLoader) - Constructor for class com.flowpowered.plugins.simple.SimplePluginLoader
+
 
+
SimplePluginLoader(ContextCreator<C>, ClassLoader, String) - Constructor for class com.flowpowered.plugins.simple.SimplePluginLoader
+
 
+
SimplePluginLoader(ContextCreator<C>, ClassLoader, String, String, String) - Constructor for class com.flowpowered.plugins.simple.SimplePluginLoader
+
 
+
+ + + +

V

+
+
validateMethod(Method, Class<? extends Context>) - Method in class com.flowpowered.plugins.annotated.AnnotatedPluginLoader
+
 
+
valueOf(String) - Static method in enum com.flowpowered.plugins.PluginState
+
+
Returns the enum constant of this type with the specified name.
+
+
values() - Static method in enum com.flowpowered.plugins.PluginState
+
+
Returns an array containing the constants of this enum type, in +the order they are declared.
+
+
+A C D E F G I L N O P S V 
+ +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/index.html b/index.html new file mode 100644 index 0000000..e1b195c --- /dev/null +++ b/index.html @@ -0,0 +1,75 @@ + + + + + + +Flow Plugins 0.1.0-SNAPSHOT API + + + + + + + + + +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<h2>Frame Alert</h2> +<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> + + + diff --git a/overview-frame.html b/overview-frame.html new file mode 100644 index 0000000..6826dbb --- /dev/null +++ b/overview-frame.html @@ -0,0 +1,24 @@ + + + + + + +Overview List (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + +
All Classes
+
+

Packages

+ +
+

 

+ + diff --git a/overview-summary.html b/overview-summary.html new file mode 100644 index 0000000..38fde7b --- /dev/null +++ b/overview-summary.html @@ -0,0 +1,148 @@ + + + + + + +Overview (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Flow Plugins 0.1.0-SNAPSHOT API

+
+
+ + + + + + + + + + + + + + + + + + + + +
Packages 
PackageDescription
com.flowpowered.plugins 
com.flowpowered.plugins.annotated 
com.flowpowered.plugins.simple 
+
+ +
+ + + + + + + +
+ + +

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/overview-tree.html b/overview-tree.html new file mode 100644 index 0000000..4c8755c --- /dev/null +++ b/overview-tree.html @@ -0,0 +1,199 @@ + + + + + + +Class Hierarchy (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For All Packages

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Annotation Type Hierarchy

+ +

Enum Hierarchy

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/package-list b/package-list new file mode 100644 index 0000000..df1607a --- /dev/null +++ b/package-list @@ -0,0 +1,3 @@ +com.flowpowered.plugins +com.flowpowered.plugins.annotated +com.flowpowered.plugins.simple diff --git a/script.js b/script.js new file mode 100644 index 0000000..b346356 --- /dev/null +++ b/script.js @@ -0,0 +1,30 @@ +function show(type) +{ + count = 0; + for (var key in methods) { + var row = document.getElementById(key); + if ((methods[key] & type) != 0) { + row.style.display = ''; + row.className = (count++ % 2) ? rowColor : altColor; + } + else + row.style.display = 'none'; + } + updateTabs(type); +} + +function updateTabs(type) +{ + for (var value in tabs) { + var sNode = document.getElementById(tabs[value][0]); + var spanNode = sNode.firstChild; + if (value == type) { + sNode.className = activeTableTab; + spanNode.innerHTML = tabs[value][1]; + } + else { + sNode.className = tableTab; + spanNode.innerHTML = "" + tabs[value][1] + ""; + } + } +} diff --git a/serialized-form.html b/serialized-form.html new file mode 100644 index 0000000..6847f79 --- /dev/null +++ b/serialized-form.html @@ -0,0 +1,143 @@ + + + + + + +Serialized Form (Flow Plugins 0.1.0-SNAPSHOT API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Serialized Form

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

Copyright © 2013–2015 Flow Powered. All rights reserved.

+ + diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..cebb4fd --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,574 @@ +/* Javadoc style sheet */ +/* +Overall document style +*/ + +@import url('resources/fonts/dejavu.css'); + +body { + background-color:#ffffff; + color:#353833; + font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; + font-size:14px; + margin:0; +} +a:link, a:visited { + text-decoration:none; + color:#4A6782; +} +a:hover, a:focus { + text-decoration:none; + color:#bb7a2a; +} +a:active { + text-decoration:none; + color:#4A6782; +} +a[name] { + color:#353833; +} +a[name]:hover { + text-decoration:none; + color:#353833; +} +pre { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; +} +h1 { + font-size:20px; +} +h2 { + font-size:18px; +} +h3 { + font-size:16px; + font-style:italic; +} +h4 { + font-size:13px; +} +h5 { + font-size:12px; +} +h6 { + font-size:11px; +} +ul { + list-style-type:disc; +} +code, tt { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; + margin-top:8px; + line-height:1.4em; +} +dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + padding-top:4px; +} +table tr td dt code { + font-family:'DejaVu Sans Mono', monospace; + font-size:14px; + vertical-align:top; + padding-top:4px; +} +sup { + font-size:8px; +} +/* +Document title and Copyright styles +*/ +.clear { + clear:both; + height:0px; + overflow:hidden; +} +.aboutLanguage { + float:right; + padding:0px 21px; + font-size:11px; + z-index:200; + margin-top:-9px; +} +.legalCopy { + margin-left:.5em; +} +.bar a, .bar a:link, .bar a:visited, .bar a:active { + color:#FFFFFF; + text-decoration:none; +} +.bar a:hover, .bar a:focus { + color:#bb7a2a; +} +.tab { + background-color:#0066FF; + color:#ffffff; + padding:8px; + width:5em; + font-weight:bold; +} +/* +Navigation bar styles +*/ +.bar { + background-color:#4D7A97; + color:#FFFFFF; + padding:.8em .5em .4em .8em; + height:auto;/*height:1.8em;*/ + font-size:11px; + margin:0; +} +.topNav { + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.bottomNav { + margin-top:10px; + background-color:#4D7A97; + color:#FFFFFF; + float:left; + padding:0; + width:100%; + clear:right; + height:2.8em; + padding-top:10px; + overflow:hidden; + font-size:12px; +} +.subNav { + background-color:#dee3e9; + float:left; + width:100%; + overflow:hidden; + font-size:12px; +} +.subNav div { + clear:left; + float:left; + padding:0 0 5px 6px; + text-transform:uppercase; +} +ul.navList, ul.subNavList { + float:left; + margin:0 25px 0 0; + padding:0; +} +ul.navList li{ + list-style:none; + float:left; + padding: 5px 6px; + text-transform:uppercase; +} +ul.subNavList li{ + list-style:none; + float:left; +} +.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { + color:#FFFFFF; + text-decoration:none; + text-transform:uppercase; +} +.topNav a:hover, .bottomNav a:hover { + text-decoration:none; + color:#bb7a2a; + text-transform:uppercase; +} +.navBarCell1Rev { + background-color:#F8981D; + color:#253441; + margin: auto 5px; +} +.skipNav { + position:absolute; + top:auto; + left:-9999px; + overflow:hidden; +} +/* +Page header and footer styles +*/ +.header, .footer { + clear:both; + margin:0 20px; + padding:5px 0 0 0; +} +.indexHeader { + margin:10px; + position:relative; +} +.indexHeader span{ + margin-right:15px; +} +.indexHeader h1 { + font-size:13px; +} +.title { + color:#2c4557; + margin:10px 0; +} +.subTitle { + margin:5px 0 0 0; +} +.header ul { + margin:0 0 15px 0; + padding:0; +} +.footer ul { + margin:20px 0 5px 0; +} +.header ul li, .footer ul li { + list-style:none; + font-size:13px; +} +/* +Heading styles +*/ +div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList ul.blockList li.blockList h3 { + background-color:#dee3e9; + border:1px solid #d0d9e0; + margin:0 0 6px -8px; + padding:7px 5px; +} +ul.blockList ul.blockList li.blockList h3 { + padding:0; + margin:15px 0; +} +ul.blockList li.blockList h2 { + padding:0px 0 20px 0; +} +/* +Page layout container styles +*/ +.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { + clear:both; + padding:10px 20px; + position:relative; +} +.indexContainer { + margin:10px; + position:relative; + font-size:12px; +} +.indexContainer h2 { + font-size:13px; + padding:0 0 3px 0; +} +.indexContainer ul { + margin:0; + padding:0; +} +.indexContainer ul li { + list-style:none; + padding-top:2px; +} +.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { + font-size:12px; + font-weight:bold; + margin:10px 0 0 0; + color:#4E4E4E; +} +.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { + margin:5px 0 10px 0px; + font-size:14px; + font-family:'DejaVu Sans Mono',monospace; +} +.serializedFormContainer dl.nameValue dt { + margin-left:1px; + font-size:1.1em; + display:inline; + font-weight:bold; +} +.serializedFormContainer dl.nameValue dd { + margin:0 0 0 1px; + font-size:1.1em; + display:inline; +} +/* +List styles +*/ +ul.horizontal li { + display:inline; + font-size:0.9em; +} +ul.inheritance { + margin:0; + padding:0; +} +ul.inheritance li { + display:inline; + list-style:none; +} +ul.inheritance li ul.inheritance { + margin-left:15px; + padding-left:15px; + padding-top:1px; +} +ul.blockList, ul.blockListLast { + margin:10px 0 10px 0; + padding:0; +} +ul.blockList li.blockList, ul.blockListLast li.blockList { + list-style:none; + margin-bottom:15px; + line-height:1.4; +} +ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { + padding:0px 20px 5px 10px; + border:1px solid #ededed; + background-color:#f8f8f8; +} +ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { + padding:0 0 5px 8px; + background-color:#ffffff; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { + margin-left:0; + padding-left:0; + padding-bottom:15px; + border:none; +} +ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { + list-style:none; + border-bottom:none; + padding-bottom:0; +} +table tr td dl, table tr td dl dt, table tr td dl dd { + margin-top:0; + margin-bottom:1px; +} +/* +Table styles +*/ +.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { + width:100%; + border-left:1px solid #EEE; + border-right:1px solid #EEE; + border-bottom:1px solid #EEE; +} +.overviewSummary, .memberSummary { + padding:0px; +} +.overviewSummary caption, .memberSummary caption, .typeSummary caption, +.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { + position:relative; + text-align:left; + background-repeat:no-repeat; + color:#253441; + font-weight:bold; + clear:none; + overflow:hidden; + padding:0px; + padding-top:10px; + padding-left:1px; + margin:0px; + white-space:pre; +} +.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, +.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, +.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, +.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, +.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, +.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, +.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, +.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { + color:#FFFFFF; +} +.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, +.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + padding-bottom:7px; + display:inline-block; + float:left; + background-color:#F8981D; + border: none; + height:16px; +} +.memberSummary caption span.activeTableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#F8981D; + height:16px; +} +.memberSummary caption span.tableTab span { + white-space:nowrap; + padding-top:5px; + padding-left:12px; + padding-right:12px; + margin-right:3px; + display:inline-block; + float:left; + background-color:#4D7A97; + height:16px; +} +.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { + padding-top:0px; + padding-left:0px; + padding-right:0px; + background-image:none; + float:none; + display:inline; +} +.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, +.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { + display:none; + width:5px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .activeTableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + float:left; + background-color:#F8981D; +} +.memberSummary .tableTab .tabEnd { + display:none; + width:5px; + margin-right:3px; + position:relative; + background-color:#4D7A97; + float:left; + +} +.overviewSummary td, .memberSummary td, .typeSummary td, +.useSummary td, .constantsSummary td, .deprecatedSummary td { + text-align:left; + padding:0px 0px 12px 10px; + width:100%; +} +th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, +td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ + vertical-align:top; + padding-right:0px; + padding-top:8px; + padding-bottom:3px; +} +th.colFirst, th.colLast, th.colOne, .constantsSummary th { + background:#dee3e9; + text-align:left; + padding:8px 3px 3px 7px; +} +td.colFirst, th.colFirst { + white-space:nowrap; + font-size:13px; +} +td.colLast, th.colLast { + font-size:13px; +} +td.colOne, th.colOne { + font-size:13px; +} +.overviewSummary td.colFirst, .overviewSummary th.colFirst, +.overviewSummary td.colOne, .overviewSummary th.colOne, +.memberSummary td.colFirst, .memberSummary th.colFirst, +.memberSummary td.colOne, .memberSummary th.colOne, +.typeSummary td.colFirst{ + width:25%; + vertical-align:top; +} +td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { + font-weight:bold; +} +.tableSubHeadingColor { + background-color:#EEEEFF; +} +.altColor { + background-color:#FFFFFF; +} +.rowColor { + background-color:#EEEEEF; +} +/* +Content styles +*/ +.description pre { + margin-top:0; +} +.deprecatedContent { + margin:0; + padding:10px 0; +} +.docSummary { + padding:0; +} + +ul.blockList ul.blockList ul.blockList li.blockList h3 { + font-style:normal; +} + +div.block { + font-size:14px; + font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; +} + +td.colLast div { + padding-top:0px; +} + + +td.colLast a { + padding-bottom:3px; +} +/* +Formatting effect styles +*/ +.sourceLineNo { + color:green; + padding:0 30px 0 0; +} +h1.hidden { + visibility:hidden; + overflow:hidden; + font-size:10px; +} +.block { + display:block; + margin:3px 10px 2px 0px; + color:#474747; +} +.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, +.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, +.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { + font-weight:bold; +} +.deprecationComment, .emphasizedPhrase, .interfaceName { + font-style:italic; +} + +div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, +div.block div.block span.interfaceName { + font-style:normal; +} + +div.contentContainer ul.blockList li.blockList h2{ + padding-bottom:0px; +} From 7857a50eab596c9753d74ed69a57f8ae5a8cfb79 Mon Sep 17 00:00:00 2001 From: Travis Date: Sat, 19 Sep 2015 00:44:12 +0000 Subject: [PATCH 2/2] Javadocs for Travis build 57 --- allclasses-frame.html | 6 +++--- allclasses-noframe.html | 6 +++--- com/flowpowered/plugins/Context.html | 8 ++++---- .../plugins/ContextCreator.NoContextCreator.html | 8 ++++---- com/flowpowered/plugins/ContextCreator.html | 8 ++++---- com/flowpowered/plugins/InvalidPluginException.html | 8 ++++---- com/flowpowered/plugins/Plugin.html | 8 ++++---- com/flowpowered/plugins/PluginClassLoader.html | 8 ++++---- com/flowpowered/plugins/PluginLoader.html | 8 ++++---- com/flowpowered/plugins/PluginLoggerFactory.html | 8 ++++---- com/flowpowered/plugins/PluginManager.html | 8 ++++---- com/flowpowered/plugins/PluginState.html | 8 ++++---- com/flowpowered/plugins/annotated/AnnotatedPlugin.html | 8 ++++---- .../plugins/annotated/AnnotatedPluginLoader.html | 8 ++++---- com/flowpowered/plugins/annotated/Disable.html | 8 ++++---- com/flowpowered/plugins/annotated/Enable.html | 8 ++++---- com/flowpowered/plugins/annotated/Plugin.html | 8 ++++---- .../plugins/annotated/class-use/AnnotatedPlugin.html | 8 ++++---- .../annotated/class-use/AnnotatedPluginLoader.html | 8 ++++---- .../plugins/annotated/class-use/Disable.html | 8 ++++---- .../plugins/annotated/class-use/Enable.html | 8 ++++---- .../plugins/annotated/class-use/Plugin.html | 8 ++++---- com/flowpowered/plugins/annotated/package-frame.html | 6 +++--- com/flowpowered/plugins/annotated/package-summary.html | 8 ++++---- com/flowpowered/plugins/annotated/package-tree.html | 8 ++++---- com/flowpowered/plugins/annotated/package-use.html | 8 ++++---- com/flowpowered/plugins/class-use/Context.html | 8 ++++---- .../class-use/ContextCreator.NoContextCreator.html | 8 ++++---- com/flowpowered/plugins/class-use/ContextCreator.html | 8 ++++---- .../plugins/class-use/InvalidPluginException.html | 8 ++++---- com/flowpowered/plugins/class-use/Plugin.html | 8 ++++---- .../plugins/class-use/PluginClassLoader.html | 8 ++++---- com/flowpowered/plugins/class-use/PluginLoader.html | 8 ++++---- .../plugins/class-use/PluginLoggerFactory.html | 8 ++++---- com/flowpowered/plugins/class-use/PluginManager.html | 8 ++++---- com/flowpowered/plugins/class-use/PluginState.html | 8 ++++---- com/flowpowered/plugins/package-frame.html | 6 +++--- com/flowpowered/plugins/package-summary.html | 8 ++++---- com/flowpowered/plugins/package-tree.html | 8 ++++---- com/flowpowered/plugins/package-use.html | 8 ++++---- com/flowpowered/plugins/simple/SimplePluginLoader.html | 8 ++++---- .../plugins/simple/class-use/SimplePluginLoader.html | 8 ++++---- com/flowpowered/plugins/simple/package-frame.html | 6 +++--- com/flowpowered/plugins/simple/package-summary.html | 8 ++++---- com/flowpowered/plugins/simple/package-tree.html | 8 ++++---- com/flowpowered/plugins/simple/package-use.html | 8 ++++---- constant-values.html | 8 ++++---- deprecated-list.html | 8 ++++---- help-doc.html | 8 ++++---- index-all.html | 8 ++++---- index.html | 4 ++-- overview-frame.html | 6 +++--- overview-summary.html | 10 +++++----- overview-tree.html | 8 ++++---- serialized-form.html | 8 ++++---- 55 files changed, 213 insertions(+), 213 deletions(-) diff --git a/allclasses-frame.html b/allclasses-frame.html index c6e79bc..bd404c9 100644 --- a/allclasses-frame.html +++ b/allclasses-frame.html @@ -2,10 +2,10 @@ - + -All Classes (Flow Plugins 0.1.0-SNAPSHOT API) - +All Classes (Flow Plugins 1.0.0 API) + diff --git a/allclasses-noframe.html b/allclasses-noframe.html index ce6144d..702c0ed 100644 --- a/allclasses-noframe.html +++ b/allclasses-noframe.html @@ -2,10 +2,10 @@ - + -All Classes (Flow Plugins 0.1.0-SNAPSHOT API) - +All Classes (Flow Plugins 1.0.0 API) + diff --git a/com/flowpowered/plugins/Context.html b/com/flowpowered/plugins/Context.html index fe2c48b..5d745fd 100644 --- a/com/flowpowered/plugins/Context.html +++ b/com/flowpowered/plugins/Context.html @@ -2,10 +2,10 @@ - + -Context (Flow Plugins 0.1.0-SNAPSHOT API) - +Context (Flow Plugins 1.0.0 API) + @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ diff --git a/com/flowpowered/plugins/annotated/package-summary.html b/com/flowpowered/plugins/annotated/package-summary.html index 66fca77..1ea321c 100644 --- a/com/flowpowered/plugins/annotated/package-summary.html +++ b/com/flowpowered/plugins/annotated/package-summary.html @@ -2,10 +2,10 @@ - + -com.flowpowered.plugins.annotated (Flow Plugins 0.1.0-SNAPSHOT API) - +com.flowpowered.plugins.annotated (Flow Plugins 1.0.0 API) + @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ diff --git a/com/flowpowered/plugins/package-summary.html b/com/flowpowered/plugins/package-summary.html index a805c92..866aa23 100644 --- a/com/flowpowered/plugins/package-summary.html +++ b/com/flowpowered/plugins/package-summary.html @@ -2,10 +2,10 @@ - + -com.flowpowered.plugins (Flow Plugins 0.1.0-SNAPSHOT API) - +com.flowpowered.plugins (Flow Plugins 1.0.0 API) + @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ diff --git a/com/flowpowered/plugins/simple/package-summary.html b/com/flowpowered/plugins/simple/package-summary.html index d100b54..1c3c52f 100644 --- a/com/flowpowered/plugins/simple/package-summary.html +++ b/com/flowpowered/plugins/simple/package-summary.html @@ -2,10 +2,10 @@ - + -com.flowpowered.plugins.simple (Flow Plugins 0.1.0-SNAPSHOT API) - +com.flowpowered.plugins.simple (Flow Plugins 1.0.0 API) + @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ diff --git a/overview-summary.html b/overview-summary.html index 38fde7b..7a03897 100644 --- a/overview-summary.html +++ b/overview-summary.html @@ -2,10 +2,10 @@ - + -Overview (Flow Plugins 0.1.0-SNAPSHOT API) - +Overview (Flow Plugins 1.0.0 API) + @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@