Fixing license in all files
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 16 Oct 2012 12:42:00 +0200
changeset 106346633cd13d6
parent 105 0ac40ea1963d
child 107 0195ef3415ba
Fixing license in all files
.hgignore
COPYING
core/src/main/java/org/apidesign/bck2brwsr/core/ExtraJavaScript.java
core/src/main/java/org/apidesign/bck2brwsr/core/JavaScriptBody.java
core/src/main/java/org/apidesign/bck2brwsr/core/NoJavaScript.java
htmlpage/pom.xml
htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/PageProcessor.java
htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/ProcessPage.java
htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Button.java
htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Element.java
htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Input.java
htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/OnClick.java
htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Page.java
htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Title.java
htmlpage/src/test/java/org/apidesign/bck2brwsr/htmlpage/PageController.java
htmlpage/src/test/java/org/apidesign/bck2brwsr/htmlpage/ProcessPageTest.java
htmlpage/src/test/resources/org/apidesign/bck2brwsr/htmlpage/TestPage.html
pom.xml
vm/nb-configuration.xml
vm/pom.xml
vm/src/header.txt
vm/src/main/java/org/apidesign/vm4brwsr/ByteCodeToJavaScript.java
vm/src/main/java/org/apidesign/vm4brwsr/GenJS.java
vm/src/test/java/org/apidesign/vm4brwsr/Array.java
vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java
vm/src/test/java/org/apidesign/vm4brwsr/GetByte.java
vm/src/test/java/org/apidesign/vm4brwsr/Instance.java
vm/src/test/java/org/apidesign/vm4brwsr/InstanceSub.java
vm/src/test/java/org/apidesign/vm4brwsr/InstanceSubTest.java
vm/src/test/java/org/apidesign/vm4brwsr/InstanceTest.java
vm/src/test/java/org/apidesign/vm4brwsr/StaticMethod.java
vm/src/test/java/org/apidesign/vm4brwsr/StaticMethodTest.java
vm/src/test/java/org/apidesign/vm4brwsr/StaticUse.java
vm/src/test/java/org/apidesign/vm4brwsr/StringSample.java
vm/src/test/java/org/apidesign/vm4brwsr/StringTest.java
     1.1 --- a/.hgignore	Tue Oct 16 12:27:15 2012 +0200
     1.2 +++ b/.hgignore	Tue Oct 16 12:42:00 2012 +0200
     1.3 @@ -1,4 +1,4 @@
     1.4  ^target/.*
     1.5  .*/target/.*
     1.6  .*orig$
     1.7 -
     1.8 +.*~
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/COPYING	Tue Oct 16 12:42:00 2012 +0200
     2.3 @@ -0,0 +1,15 @@
     2.4 +Back 2 Browser Bytecode Translator
     2.5 +Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     2.6 +
     2.7 +This program is free software: you can redistribute it and/or modify
     2.8 +it under the terms of the GNU General Public License as published by
     2.9 +the Free Software Foundation, version 2 of the License.
    2.10 +
    2.11 +This program is distributed in the hope that it will be useful,
    2.12 +but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.13 +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.14 +GNU General Public License for more details.
    2.15 +
    2.16 +You should have received a copy of the GNU General Public License
    2.17 +along with this program. Look for COPYING file in the top folder.
    2.18 +If not, see http://opensource.org/licenses/GPL-2.0.
     3.1 --- a/core/src/main/java/org/apidesign/bck2brwsr/core/ExtraJavaScript.java	Tue Oct 16 12:27:15 2012 +0200
     3.2 +++ b/core/src/main/java/org/apidesign/bck2brwsr/core/ExtraJavaScript.java	Tue Oct 16 12:42:00 2012 +0200
     3.3 @@ -1,3 +1,20 @@
     3.4 +/**
     3.5 + * Back 2 Browser Bytecode Translator
     3.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     3.7 + *
     3.8 + * This program is free software: you can redistribute it and/or modify
     3.9 + * it under the terms of the GNU General Public License as published by
    3.10 + * the Free Software Foundation, version 2 of the License.
    3.11 + *
    3.12 + * This program is distributed in the hope that it will be useful,
    3.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    3.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    3.15 + * GNU General Public License for more details.
    3.16 + *
    3.17 + * You should have received a copy of the GNU General Public License
    3.18 + * along with this program. Look for COPYING file in the top folder.
    3.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    3.20 + */
    3.21  package org.apidesign.bck2brwsr.core;
    3.22  
    3.23  import java.lang.annotation.ElementType;
     4.1 --- a/core/src/main/java/org/apidesign/bck2brwsr/core/JavaScriptBody.java	Tue Oct 16 12:27:15 2012 +0200
     4.2 +++ b/core/src/main/java/org/apidesign/bck2brwsr/core/JavaScriptBody.java	Tue Oct 16 12:42:00 2012 +0200
     4.3 @@ -1,6 +1,19 @@
     4.4 -/*
     4.5 - * To change this template, choose Tools | Templates
     4.6 - * and open the template in the editor.
     4.7 +/**
     4.8 + * Back 2 Browser Bytecode Translator
     4.9 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    4.10 + *
    4.11 + * This program is free software: you can redistribute it and/or modify
    4.12 + * it under the terms of the GNU General Public License as published by
    4.13 + * the Free Software Foundation, version 2 of the License.
    4.14 + *
    4.15 + * This program is distributed in the hope that it will be useful,
    4.16 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    4.17 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    4.18 + * GNU General Public License for more details.
    4.19 + *
    4.20 + * You should have received a copy of the GNU General Public License
    4.21 + * along with this program. Look for COPYING file in the top folder.
    4.22 + * If not, see http://opensource.org/licenses/GPL-2.0.
    4.23   */
    4.24  package org.apidesign.bck2brwsr.core;
    4.25  
     5.1 --- a/core/src/main/java/org/apidesign/bck2brwsr/core/NoJavaScript.java	Tue Oct 16 12:27:15 2012 +0200
     5.2 +++ b/core/src/main/java/org/apidesign/bck2brwsr/core/NoJavaScript.java	Tue Oct 16 12:42:00 2012 +0200
     5.3 @@ -1,3 +1,20 @@
     5.4 +/**
     5.5 + * Back 2 Browser Bytecode Translator
     5.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     5.7 + *
     5.8 + * This program is free software: you can redistribute it and/or modify
     5.9 + * it under the terms of the GNU General Public License as published by
    5.10 + * the Free Software Foundation, version 2 of the License.
    5.11 + *
    5.12 + * This program is distributed in the hope that it will be useful,
    5.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    5.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    5.15 + * GNU General Public License for more details.
    5.16 + *
    5.17 + * You should have received a copy of the GNU General Public License
    5.18 + * along with this program. Look for COPYING file in the top folder.
    5.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    5.20 + */
    5.21  package org.apidesign.bck2brwsr.core;
    5.22  
    5.23  import java.lang.annotation.ElementType;
     6.1 --- a/htmlpage/pom.xml	Tue Oct 16 12:27:15 2012 +0200
     6.2 +++ b/htmlpage/pom.xml	Tue Oct 16 12:42:00 2012 +0200
     6.3 @@ -51,16 +51,4 @@
     6.4        <scope>test</scope>
     6.5      </dependency>
     6.6    </dependencies>
     6.7 -    <build>
     6.8 -        <plugins>
     6.9 -            <plugin>
    6.10 -                <groupId>com.mycila.maven-license-plugin</groupId>
    6.11 -                <artifactId>maven-license-plugin</artifactId>
    6.12 -                <version>1.9.0</version>
    6.13 -                <configuration>
    6.14 -                    <header>../vm/src/header.txt</header>
    6.15 -                </configuration>
    6.16 -            </plugin>
    6.17 -        </plugins>
    6.18 -    </build>
    6.19  </project>
     7.1 --- a/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/PageProcessor.java	Tue Oct 16 12:27:15 2012 +0200
     7.2 +++ b/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/PageProcessor.java	Tue Oct 16 12:42:00 2012 +0200
     7.3 @@ -1,6 +1,6 @@
     7.4  /**
     7.5 - * Java 4 Browser Bytecode Translator
     7.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     7.7 + * Back 2 Browser Bytecode Translator
     7.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     7.9   *
    7.10   * This program is free software: you can redistribute it and/or modify
    7.11   * it under the terms of the GNU General Public License as published by
     8.1 --- a/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/ProcessPage.java	Tue Oct 16 12:27:15 2012 +0200
     8.2 +++ b/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/ProcessPage.java	Tue Oct 16 12:42:00 2012 +0200
     8.3 @@ -1,6 +1,6 @@
     8.4  /**
     8.5 - * Java 4 Browser Bytecode Translator
     8.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     8.7 + * Back 2 Browser Bytecode Translator
     8.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     8.9   *
    8.10   * This program is free software: you can redistribute it and/or modify
    8.11   * it under the terms of the GNU General Public License as published by
     9.1 --- a/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Button.java	Tue Oct 16 12:27:15 2012 +0200
     9.2 +++ b/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Button.java	Tue Oct 16 12:42:00 2012 +0200
     9.3 @@ -1,6 +1,6 @@
     9.4  /**
     9.5 - * Java 4 Browser Bytecode Translator
     9.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     9.7 + * Back 2 Browser Bytecode Translator
     9.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     9.9   *
    9.10   * This program is free software: you can redistribute it and/or modify
    9.11   * it under the terms of the GNU General Public License as published by
    10.1 --- a/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Element.java	Tue Oct 16 12:27:15 2012 +0200
    10.2 +++ b/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Element.java	Tue Oct 16 12:42:00 2012 +0200
    10.3 @@ -1,6 +1,6 @@
    10.4  /**
    10.5 - * Java 4 Browser Bytecode Translator
    10.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    10.7 + * Back 2 Browser Bytecode Translator
    10.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    10.9   *
   10.10   * This program is free software: you can redistribute it and/or modify
   10.11   * it under the terms of the GNU General Public License as published by
    11.1 --- a/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Input.java	Tue Oct 16 12:27:15 2012 +0200
    11.2 +++ b/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Input.java	Tue Oct 16 12:42:00 2012 +0200
    11.3 @@ -1,6 +1,6 @@
    11.4  /**
    11.5 - * Java 4 Browser Bytecode Translator
    11.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    11.7 + * Back 2 Browser Bytecode Translator
    11.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    11.9   *
   11.10   * This program is free software: you can redistribute it and/or modify
   11.11   * it under the terms of the GNU General Public License as published by
    12.1 --- a/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/OnClick.java	Tue Oct 16 12:27:15 2012 +0200
    12.2 +++ b/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/OnClick.java	Tue Oct 16 12:42:00 2012 +0200
    12.3 @@ -1,6 +1,19 @@
    12.4 -/*
    12.5 - * To change this template, choose Tools | Templates
    12.6 - * and open the template in the editor.
    12.7 +/**
    12.8 + * Back 2 Browser Bytecode Translator
    12.9 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
   12.10 + *
   12.11 + * This program is free software: you can redistribute it and/or modify
   12.12 + * it under the terms of the GNU General Public License as published by
   12.13 + * the Free Software Foundation, version 2 of the License.
   12.14 + *
   12.15 + * This program is distributed in the hope that it will be useful,
   12.16 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   12.17 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   12.18 + * GNU General Public License for more details.
   12.19 + *
   12.20 + * You should have received a copy of the GNU General Public License
   12.21 + * along with this program. Look for COPYING file in the top folder.
   12.22 + * If not, see http://opensource.org/licenses/GPL-2.0.
   12.23   */
   12.24  package org.apidesign.bck2brwsr.htmlpage.api;
   12.25  
    13.1 --- a/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Page.java	Tue Oct 16 12:27:15 2012 +0200
    13.2 +++ b/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Page.java	Tue Oct 16 12:42:00 2012 +0200
    13.3 @@ -1,6 +1,6 @@
    13.4  /**
    13.5 - * Java 4 Browser Bytecode Translator
    13.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    13.7 + * Back 2 Browser Bytecode Translator
    13.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    13.9   *
   13.10   * This program is free software: you can redistribute it and/or modify
   13.11   * it under the terms of the GNU General Public License as published by
   13.12 @@ -15,10 +15,6 @@
   13.13   * along with this program. Look for COPYING file in the top folder.
   13.14   * If not, see http://opensource.org/licenses/GPL-2.0.
   13.15   */
   13.16 -/*
   13.17 - * To change this template, choose Tools | Templates
   13.18 - * and open the template in the editor.
   13.19 - */
   13.20  package org.apidesign.bck2brwsr.htmlpage.api;
   13.21  
   13.22  import java.lang.annotation.ElementType;
    14.1 --- a/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Title.java	Tue Oct 16 12:27:15 2012 +0200
    14.2 +++ b/htmlpage/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Title.java	Tue Oct 16 12:42:00 2012 +0200
    14.3 @@ -1,6 +1,6 @@
    14.4  /**
    14.5 - * Java 4 Browser Bytecode Translator
    14.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    14.7 + * Back 2 Browser Bytecode Translator
    14.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    14.9   *
   14.10   * This program is free software: you can redistribute it and/or modify
   14.11   * it under the terms of the GNU General Public License as published by
    15.1 --- a/htmlpage/src/test/java/org/apidesign/bck2brwsr/htmlpage/PageController.java	Tue Oct 16 12:27:15 2012 +0200
    15.2 +++ b/htmlpage/src/test/java/org/apidesign/bck2brwsr/htmlpage/PageController.java	Tue Oct 16 12:42:00 2012 +0200
    15.3 @@ -1,3 +1,20 @@
    15.4 +/**
    15.5 + * Back 2 Browser Bytecode Translator
    15.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    15.7 + *
    15.8 + * This program is free software: you can redistribute it and/or modify
    15.9 + * it under the terms of the GNU General Public License as published by
   15.10 + * the Free Software Foundation, version 2 of the License.
   15.11 + *
   15.12 + * This program is distributed in the hope that it will be useful,
   15.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   15.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   15.15 + * GNU General Public License for more details.
   15.16 + *
   15.17 + * You should have received a copy of the GNU General Public License
   15.18 + * along with this program. Look for COPYING file in the top folder.
   15.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   15.20 + */
   15.21  package org.apidesign.bck2brwsr.htmlpage;
   15.22  
   15.23  import org.apidesign.bck2brwsr.htmlpage.api.OnClick;
    16.1 --- a/htmlpage/src/test/java/org/apidesign/bck2brwsr/htmlpage/ProcessPageTest.java	Tue Oct 16 12:27:15 2012 +0200
    16.2 +++ b/htmlpage/src/test/java/org/apidesign/bck2brwsr/htmlpage/ProcessPageTest.java	Tue Oct 16 12:42:00 2012 +0200
    16.3 @@ -1,6 +1,6 @@
    16.4  /**
    16.5 - * Java 4 Browser Bytecode Translator
    16.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    16.7 + * Back 2 Browser Bytecode Translator
    16.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    16.9   *
   16.10   * This program is free software: you can redistribute it and/or modify
   16.11   * it under the terms of the GNU General Public License as published by
    17.1 --- a/htmlpage/src/test/resources/org/apidesign/bck2brwsr/htmlpage/TestPage.html	Tue Oct 16 12:27:15 2012 +0200
    17.2 +++ b/htmlpage/src/test/resources/org/apidesign/bck2brwsr/htmlpage/TestPage.html	Tue Oct 16 12:42:00 2012 +0200
    17.3 @@ -1,8 +1,8 @@
    17.4  <?xml version="1.0" encoding="UTF-8"?>
    17.5  <!--
    17.6  
    17.7 -    Java 4 Browser Bytecode Translator
    17.8 -    Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    17.9 +    Back 2 Browser Bytecode Translator
   17.10 +    Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
   17.11  
   17.12      This program is free software: you can redistribute it and/or modify
   17.13      it under the terms of the GNU General Public License as published by
    18.1 --- a/pom.xml	Tue Oct 16 12:27:15 2012 +0200
    18.2 +++ b/pom.xml	Tue Oct 16 12:42:00 2012 +0200
    18.3 @@ -43,6 +43,34 @@
    18.4            </releases>
    18.5        </pluginRepository>
    18.6    </pluginRepositories>
    18.7 +  <build>
    18.8 +      <plugins>
    18.9 +         <plugin>
   18.10 +              <inherited>false</inherited>
   18.11 +              <groupId>com.mycila.maven-license-plugin</groupId>
   18.12 +              <artifactId>maven-license-plugin</artifactId>
   18.13 +              <version>1.9.0</version>
   18.14 +              <executions>
   18.15 +                  <execution>
   18.16 +                      <id>blah</id>
   18.17 +                      <goals>
   18.18 +                          <goal>check</goal>
   18.19 +                      </goals>
   18.20 +                  </execution>
   18.21 +              </executions>
   18.22 +              <configuration>
   18.23 +                  <aggregate>true</aggregate>
   18.24 +                  <basedir>${basedir}</basedir>
   18.25 +                  <header>COPYING</header>
   18.26 +                  <strictCheck>true</strictCheck>
   18.27 +                  <excludes>
   18.28 +                       <exclude>emul/**</exclude>
   18.29 +                       <exclude>*</exclude>
   18.30 +                  </excludes>
   18.31 +              </configuration>
   18.32 +          </plugin>
   18.33 +      </plugins>
   18.34 +  </build>
   18.35    <dependencyManagement>
   18.36        <dependencies>
   18.37          <dependency>
    19.1 --- a/vm/nb-configuration.xml	Tue Oct 16 12:27:15 2012 +0200
    19.2 +++ b/vm/nb-configuration.xml	Tue Oct 16 12:42:00 2012 +0200
    19.3 @@ -1,8 +1,8 @@
    19.4  <?xml version="1.0" encoding="UTF-8"?>
    19.5  <!--
    19.6  
    19.7 -    Java 4 Browser Bytecode Translator
    19.8 -    Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    19.9 +    Back 2 Browser Bytecode Translator
   19.10 +    Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
   19.11  
   19.12      This program is free software: you can redistribute it and/or modify
   19.13      it under the terms of the GNU General Public License as published by
    20.1 --- a/vm/pom.xml	Tue Oct 16 12:27:15 2012 +0200
    20.2 +++ b/vm/pom.xml	Tue Oct 16 12:42:00 2012 +0200
    20.3 @@ -59,14 +59,6 @@
    20.4                    </archive>
    20.5                </configuration>
    20.6            </plugin>
    20.7 -          <plugin>
    20.8 -              <groupId>com.mycila.maven-license-plugin</groupId>
    20.9 -              <artifactId>maven-license-plugin</artifactId>
   20.10 -              <version>1.9.0</version>
   20.11 -              <configuration>
   20.12 -                  <header>src/header.txt</header>
   20.13 -              </configuration>
   20.14 -          </plugin>
   20.15        </plugins>
   20.16    </build>
   20.17    <dependencies>
    21.1 --- a/vm/src/header.txt	Tue Oct 16 12:27:15 2012 +0200
    21.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
    21.3 @@ -1,15 +0,0 @@
    21.4 -Java 4 Browser Bytecode Translator
    21.5 -Copyright (C) 2012-${year} Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    21.6 -
    21.7 -This program is free software: you can redistribute it and/or modify
    21.8 -it under the terms of the GNU General Public License as published by
    21.9 -the Free Software Foundation, version 2 of the License.
   21.10 -
   21.11 -This program is distributed in the hope that it will be useful,
   21.12 -but WITHOUT ANY WARRANTY; without even the implied warranty of
   21.13 -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   21.14 -GNU General Public License for more details.
   21.15 -
   21.16 -You should have received a copy of the GNU General Public License
   21.17 -along with this program. Look for COPYING file in the top folder.
   21.18 -If not, see http://opensource.org/licenses/GPL-2.0.
    22.1 --- a/vm/src/main/java/org/apidesign/vm4brwsr/ByteCodeToJavaScript.java	Tue Oct 16 12:27:15 2012 +0200
    22.2 +++ b/vm/src/main/java/org/apidesign/vm4brwsr/ByteCodeToJavaScript.java	Tue Oct 16 12:42:00 2012 +0200
    22.3 @@ -1,3 +1,20 @@
    22.4 +/**
    22.5 + * Back 2 Browser Bytecode Translator
    22.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    22.7 + *
    22.8 + * This program is free software: you can redistribute it and/or modify
    22.9 + * it under the terms of the GNU General Public License as published by
   22.10 + * the Free Software Foundation, version 2 of the License.
   22.11 + *
   22.12 + * This program is distributed in the hope that it will be useful,
   22.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   22.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   22.15 + * GNU General Public License for more details.
   22.16 + *
   22.17 + * You should have received a copy of the GNU General Public License
   22.18 + * along with this program. Look for COPYING file in the top folder.
   22.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   22.20 + */
   22.21  /*
   22.22  Java 4 Browser Bytecode Translator
   22.23  Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    23.1 --- a/vm/src/main/java/org/apidesign/vm4brwsr/GenJS.java	Tue Oct 16 12:27:15 2012 +0200
    23.2 +++ b/vm/src/main/java/org/apidesign/vm4brwsr/GenJS.java	Tue Oct 16 12:42:00 2012 +0200
    23.3 @@ -1,3 +1,20 @@
    23.4 +/**
    23.5 + * Back 2 Browser Bytecode Translator
    23.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    23.7 + *
    23.8 + * This program is free software: you can redistribute it and/or modify
    23.9 + * it under the terms of the GNU General Public License as published by
   23.10 + * the Free Software Foundation, version 2 of the License.
   23.11 + *
   23.12 + * This program is distributed in the hope that it will be useful,
   23.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   23.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   23.15 + * GNU General Public License for more details.
   23.16 + *
   23.17 + * You should have received a copy of the GNU General Public License
   23.18 + * along with this program. Look for COPYING file in the top folder.
   23.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   23.20 + */
   23.21  package org.apidesign.vm4brwsr;
   23.22  
   23.23  import java.io.BufferedWriter;
    24.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/Array.java	Tue Oct 16 12:27:15 2012 +0200
    24.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/Array.java	Tue Oct 16 12:42:00 2012 +0200
    24.3 @@ -1,3 +1,20 @@
    24.4 +/**
    24.5 + * Back 2 Browser Bytecode Translator
    24.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    24.7 + *
    24.8 + * This program is free software: you can redistribute it and/or modify
    24.9 + * it under the terms of the GNU General Public License as published by
   24.10 + * the Free Software Foundation, version 2 of the License.
   24.11 + *
   24.12 + * This program is distributed in the hope that it will be useful,
   24.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   24.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   24.15 + * GNU General Public License for more details.
   24.16 + *
   24.17 + * You should have received a copy of the GNU General Public License
   24.18 + * along with this program. Look for COPYING file in the top folder.
   24.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   24.20 + */
   24.21  /*
   24.22  Java 4 Browser Bytecode Translator
   24.23  Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    25.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java	Tue Oct 16 12:27:15 2012 +0200
    25.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java	Tue Oct 16 12:42:00 2012 +0200
    25.3 @@ -1,3 +1,20 @@
    25.4 +/**
    25.5 + * Back 2 Browser Bytecode Translator
    25.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    25.7 + *
    25.8 + * This program is free software: you can redistribute it and/or modify
    25.9 + * it under the terms of the GNU General Public License as published by
   25.10 + * the Free Software Foundation, version 2 of the License.
   25.11 + *
   25.12 + * This program is distributed in the hope that it will be useful,
   25.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   25.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   25.15 + * GNU General Public License for more details.
   25.16 + *
   25.17 + * You should have received a copy of the GNU General Public License
   25.18 + * along with this program. Look for COPYING file in the top folder.
   25.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   25.20 + */
   25.21  /*
   25.22  Java 4 Browser Bytecode Translator
   25.23  Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    26.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/GetByte.java	Tue Oct 16 12:27:15 2012 +0200
    26.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/GetByte.java	Tue Oct 16 12:42:00 2012 +0200
    26.3 @@ -1,6 +1,6 @@
    26.4  /**
    26.5 - * Java 4 Browser Bytecode Translator
    26.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    26.7 + * Back 2 Browser Bytecode Translator
    26.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    26.9   *
   26.10   * This program is free software: you can redistribute it and/or modify
   26.11   * it under the terms of the GNU General Public License as published by
    27.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/Instance.java	Tue Oct 16 12:27:15 2012 +0200
    27.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/Instance.java	Tue Oct 16 12:42:00 2012 +0200
    27.3 @@ -1,6 +1,6 @@
    27.4  /**
    27.5 - * Java 4 Browser Bytecode Translator
    27.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    27.7 + * Back 2 Browser Bytecode Translator
    27.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    27.9   *
   27.10   * This program is free software: you can redistribute it and/or modify
   27.11   * it under the terms of the GNU General Public License as published by
    28.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/InstanceSub.java	Tue Oct 16 12:27:15 2012 +0200
    28.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/InstanceSub.java	Tue Oct 16 12:42:00 2012 +0200
    28.3 @@ -1,6 +1,6 @@
    28.4  /**
    28.5 - * Java 4 Browser Bytecode Translator
    28.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    28.7 + * Back 2 Browser Bytecode Translator
    28.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    28.9   *
   28.10   * This program is free software: you can redistribute it and/or modify
   28.11   * it under the terms of the GNU General Public License as published by
    29.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/InstanceSubTest.java	Tue Oct 16 12:27:15 2012 +0200
    29.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/InstanceSubTest.java	Tue Oct 16 12:42:00 2012 +0200
    29.3 @@ -1,3 +1,20 @@
    29.4 +/**
    29.5 + * Back 2 Browser Bytecode Translator
    29.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    29.7 + *
    29.8 + * This program is free software: you can redistribute it and/or modify
    29.9 + * it under the terms of the GNU General Public License as published by
   29.10 + * the Free Software Foundation, version 2 of the License.
   29.11 + *
   29.12 + * This program is distributed in the hope that it will be useful,
   29.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   29.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   29.15 + * GNU General Public License for more details.
   29.16 + *
   29.17 + * You should have received a copy of the GNU General Public License
   29.18 + * along with this program. Look for COPYING file in the top folder.
   29.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   29.20 + */
   29.21  package org.apidesign.vm4brwsr;
   29.22  
   29.23  /** Checks if everything works OK, when we switch the
    30.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/InstanceTest.java	Tue Oct 16 12:27:15 2012 +0200
    30.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/InstanceTest.java	Tue Oct 16 12:42:00 2012 +0200
    30.3 @@ -1,6 +1,6 @@
    30.4  /**
    30.5 - * Java 4 Browser Bytecode Translator
    30.6 - * Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    30.7 + * Back 2 Browser Bytecode Translator
    30.8 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    30.9   *
   30.10   * This program is free software: you can redistribute it and/or modify
   30.11   * it under the terms of the GNU General Public License as published by
    31.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/StaticMethod.java	Tue Oct 16 12:27:15 2012 +0200
    31.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/StaticMethod.java	Tue Oct 16 12:42:00 2012 +0200
    31.3 @@ -1,3 +1,20 @@
    31.4 +/**
    31.5 + * Back 2 Browser Bytecode Translator
    31.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    31.7 + *
    31.8 + * This program is free software: you can redistribute it and/or modify
    31.9 + * it under the terms of the GNU General Public License as published by
   31.10 + * the Free Software Foundation, version 2 of the License.
   31.11 + *
   31.12 + * This program is distributed in the hope that it will be useful,
   31.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   31.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   31.15 + * GNU General Public License for more details.
   31.16 + *
   31.17 + * You should have received a copy of the GNU General Public License
   31.18 + * along with this program. Look for COPYING file in the top folder.
   31.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   31.20 + */
   31.21  /*
   31.22  Java 4 Browser Bytecode Translator
   31.23  Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    32.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/StaticMethodTest.java	Tue Oct 16 12:27:15 2012 +0200
    32.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/StaticMethodTest.java	Tue Oct 16 12:42:00 2012 +0200
    32.3 @@ -1,3 +1,20 @@
    32.4 +/**
    32.5 + * Back 2 Browser Bytecode Translator
    32.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    32.7 + *
    32.8 + * This program is free software: you can redistribute it and/or modify
    32.9 + * it under the terms of the GNU General Public License as published by
   32.10 + * the Free Software Foundation, version 2 of the License.
   32.11 + *
   32.12 + * This program is distributed in the hope that it will be useful,
   32.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   32.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   32.15 + * GNU General Public License for more details.
   32.16 + *
   32.17 + * You should have received a copy of the GNU General Public License
   32.18 + * along with this program. Look for COPYING file in the top folder.
   32.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   32.20 + */
   32.21  /*
   32.22  Java 4 Browser Bytecode Translator
   32.23  Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    33.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/StaticUse.java	Tue Oct 16 12:27:15 2012 +0200
    33.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/StaticUse.java	Tue Oct 16 12:42:00 2012 +0200
    33.3 @@ -1,3 +1,20 @@
    33.4 +/**
    33.5 + * Back 2 Browser Bytecode Translator
    33.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    33.7 + *
    33.8 + * This program is free software: you can redistribute it and/or modify
    33.9 + * it under the terms of the GNU General Public License as published by
   33.10 + * the Free Software Foundation, version 2 of the License.
   33.11 + *
   33.12 + * This program is distributed in the hope that it will be useful,
   33.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   33.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   33.15 + * GNU General Public License for more details.
   33.16 + *
   33.17 + * You should have received a copy of the GNU General Public License
   33.18 + * along with this program. Look for COPYING file in the top folder.
   33.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   33.20 + */
   33.21  package org.apidesign.vm4brwsr;
   33.22  
   33.23  public class StaticUse {
    34.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/StringSample.java	Tue Oct 16 12:27:15 2012 +0200
    34.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/StringSample.java	Tue Oct 16 12:42:00 2012 +0200
    34.3 @@ -1,3 +1,20 @@
    34.4 +/**
    34.5 + * Back 2 Browser Bytecode Translator
    34.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    34.7 + *
    34.8 + * This program is free software: you can redistribute it and/or modify
    34.9 + * it under the terms of the GNU General Public License as published by
   34.10 + * the Free Software Foundation, version 2 of the License.
   34.11 + *
   34.12 + * This program is distributed in the hope that it will be useful,
   34.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   34.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   34.15 + * GNU General Public License for more details.
   34.16 + *
   34.17 + * You should have received a copy of the GNU General Public License
   34.18 + * along with this program. Look for COPYING file in the top folder.
   34.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   34.20 + */
   34.21  package org.apidesign.vm4brwsr;
   34.22  
   34.23  /**
    35.1 --- a/vm/src/test/java/org/apidesign/vm4brwsr/StringTest.java	Tue Oct 16 12:27:15 2012 +0200
    35.2 +++ b/vm/src/test/java/org/apidesign/vm4brwsr/StringTest.java	Tue Oct 16 12:42:00 2012 +0200
    35.3 @@ -1,3 +1,20 @@
    35.4 +/**
    35.5 + * Back 2 Browser Bytecode Translator
    35.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    35.7 + *
    35.8 + * This program is free software: you can redistribute it and/or modify
    35.9 + * it under the terms of the GNU General Public License as published by
   35.10 + * the Free Software Foundation, version 2 of the License.
   35.11 + *
   35.12 + * This program is distributed in the hope that it will be useful,
   35.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
   35.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   35.15 + * GNU General Public License for more details.
   35.16 + *
   35.17 + * You should have received a copy of the GNU General Public License
   35.18 + * along with this program. Look for COPYING file in the top folder.
   35.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
   35.20 + */
   35.21  package org.apidesign.vm4brwsr;
   35.22  
   35.23  import javax.script.Invocable;