rt/vm/src/main/java/org/apidesign/vm4brwsr/Bck2Brwsr.java
branchclosure
changeset 860 35507d1a5069
parent 849 d95117153304
child 874 2bcbe348dbec
     1.1 --- a/rt/vm/src/main/java/org/apidesign/vm4brwsr/Bck2Brwsr.java	Wed Mar 13 16:17:47 2013 +0100
     1.2 +++ b/rt/vm/src/main/java/org/apidesign/vm4brwsr/Bck2Brwsr.java	Tue Mar 19 13:08:44 2013 +0100
     1.3 @@ -89,6 +89,7 @@
     1.4       * @param resources provider of class files to use
     1.5       * @param classes additional classes to include in the generated script
     1.6       * @throws IOException I/O exception can be thrown when something goes wrong
     1.7 +     * @since 0.5
     1.8       */
     1.9      public static void generate(Appendable out, ObfuscationLevel obfuscationLevel, Resources resources, String... classes) throws IOException {
    1.10          StringArray arr = StringArray.asList(classes);
    1.11 @@ -117,6 +118,7 @@
    1.12       * @param loader class loader to load needed classes from
    1.13       * @param classes additional classes to include in the generated script
    1.14       * @throws IOException I/O exception can be thrown when something goes wrong
    1.15 +     * @since 0.5
    1.16       */
    1.17      public static void generate(Appendable out, ObfuscationLevel obfuscationLevel, final ClassLoader loader, String... classes) throws IOException {
    1.18          class R implements Resources {