Fixing license
authorJaroslav Tulach <jtulach@netbeans.org>
Thu, 03 Oct 2013 10:02:13 +0200
changeset 13268ae6a6c42b5f
parent 1325 f7f25ea1bbec
child 1327 217ca48c5b80
child 1330 740712318ab3
Fixing license
dew/src/main/java/org/apidesign/bck2brwsr/dew/BaseFileObject.java
dew/src/main/java/org/apidesign/bck2brwsr/dew/ClassLoaderFileManager.java
dew/src/main/java/org/apidesign/bck2brwsr/dew/ClassLoaderJavaFileObject.java
dew/src/main/java/org/apidesign/bck2brwsr/dew/InferableJavaFileObject.java
dew/src/main/java/org/apidesign/bck2brwsr/dew/MemoryFileObject.java
     1.1 --- a/dew/src/main/java/org/apidesign/bck2brwsr/dew/BaseFileObject.java	Wed Oct 02 22:32:57 2013 +0200
     1.2 +++ b/dew/src/main/java/org/apidesign/bck2brwsr/dew/BaseFileObject.java	Thu Oct 03 10:02:13 2013 +0200
     1.3 @@ -1,7 +1,19 @@
     1.4 -/*
     1.5 - * To change this license header, choose License Headers in Project Properties.
     1.6 - * To change this template file, choose Tools | Templates
     1.7 - * and open the template in the editor.
     1.8 +/**
     1.9 + * Back 2 Browser Bytecode Translator
    1.10 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    1.11 + *
    1.12 + * This program is free software: you can redistribute it and/or modify
    1.13 + * it under the terms of the GNU General Public License as published by
    1.14 + * the Free Software Foundation, version 2 of the License.
    1.15 + *
    1.16 + * This program is distributed in the hope that it will be useful,
    1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.19 + * GNU General Public License for more details.
    1.20 + *
    1.21 + * You should have received a copy of the GNU General Public License
    1.22 + * along with this program. Look for COPYING file in the top folder.
    1.23 + * If not, see http://opensource.org/licenses/GPL-2.0.
    1.24   */
    1.25  
    1.26  package org.apidesign.bck2brwsr.dew;
    1.27 @@ -12,7 +24,7 @@
    1.28  
    1.29  /**
    1.30   *
    1.31 - * @author tom
    1.32 + * @author Tomas Zezula
    1.33   */
    1.34  public abstract class BaseFileObject implements InferableJavaFileObject {
    1.35  
     2.1 --- a/dew/src/main/java/org/apidesign/bck2brwsr/dew/ClassLoaderFileManager.java	Wed Oct 02 22:32:57 2013 +0200
     2.2 +++ b/dew/src/main/java/org/apidesign/bck2brwsr/dew/ClassLoaderFileManager.java	Thu Oct 03 10:02:13 2013 +0200
     2.3 @@ -1,16 +1,26 @@
     2.4 -/*
     2.5 - * To change this license header, choose License Headers in Project Properties.
     2.6 - * To change this template file, choose Tools | Templates
     2.7 - * and open the template in the editor.
     2.8 +/**
     2.9 + * Back 2 Browser Bytecode Translator
    2.10 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    2.11 + *
    2.12 + * This program is free software: you can redistribute it and/or modify
    2.13 + * it under the terms of the GNU General Public License as published by
    2.14 + * the Free Software Foundation, version 2 of the License.
    2.15 + *
    2.16 + * This program is distributed in the hope that it will be useful,
    2.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    2.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    2.19 + * GNU General Public License for more details.
    2.20 + *
    2.21 + * You should have received a copy of the GNU General Public License
    2.22 + * along with this program. Look for COPYING file in the top folder.
    2.23 + * If not, see http://opensource.org/licenses/GPL-2.0.
    2.24   */
    2.25  
    2.26  package org.apidesign.bck2brwsr.dew;
    2.27  
    2.28 -import java.io.BufferedReader;
    2.29  import java.io.File;
    2.30  import java.io.IOException;
    2.31  import java.io.InputStream;
    2.32 -import java.io.InputStreamReader;
    2.33  import java.net.URL;
    2.34  import java.util.ArrayList;
    2.35  import java.util.Collections;
     3.1 --- a/dew/src/main/java/org/apidesign/bck2brwsr/dew/ClassLoaderJavaFileObject.java	Wed Oct 02 22:32:57 2013 +0200
     3.2 +++ b/dew/src/main/java/org/apidesign/bck2brwsr/dew/ClassLoaderJavaFileObject.java	Thu Oct 03 10:02:13 2013 +0200
     3.3 @@ -1,7 +1,19 @@
     3.4 -/*
     3.5 - * To change this license header, choose License Headers in Project Properties.
     3.6 - * To change this template file, choose Tools | Templates
     3.7 - * and open the template in the editor.
     3.8 +/**
     3.9 + * Back 2 Browser Bytecode Translator
    3.10 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    3.11 + *
    3.12 + * This program is free software: you can redistribute it and/or modify
    3.13 + * it under the terms of the GNU General Public License as published by
    3.14 + * the Free Software Foundation, version 2 of the License.
    3.15 + *
    3.16 + * This program is distributed in the hope that it will be useful,
    3.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    3.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    3.19 + * GNU General Public License for more details.
    3.20 + *
    3.21 + * You should have received a copy of the GNU General Public License
    3.22 + * along with this program. Look for COPYING file in the top folder.
    3.23 + * If not, see http://opensource.org/licenses/GPL-2.0.
    3.24   */
    3.25  
    3.26  package org.apidesign.bck2brwsr.dew;
     4.1 --- a/dew/src/main/java/org/apidesign/bck2brwsr/dew/InferableJavaFileObject.java	Wed Oct 02 22:32:57 2013 +0200
     4.2 +++ b/dew/src/main/java/org/apidesign/bck2brwsr/dew/InferableJavaFileObject.java	Thu Oct 03 10:02:13 2013 +0200
     4.3 @@ -1,7 +1,19 @@
     4.4 -/*
     4.5 - * To change this license header, choose License Headers in Project Properties.
     4.6 - * To change this template file, choose Tools | Templates
     4.7 - * and open the template in the editor.
     4.8 +/**
     4.9 + * Back 2 Browser Bytecode Translator
    4.10 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    4.11 + *
    4.12 + * This program is free software: you can redistribute it and/or modify
    4.13 + * it under the terms of the GNU General Public License as published by
    4.14 + * the Free Software Foundation, version 2 of the License.
    4.15 + *
    4.16 + * This program is distributed in the hope that it will be useful,
    4.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    4.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    4.19 + * GNU General Public License for more details.
    4.20 + *
    4.21 + * You should have received a copy of the GNU General Public License
    4.22 + * along with this program. Look for COPYING file in the top folder.
    4.23 + * If not, see http://opensource.org/licenses/GPL-2.0.
    4.24   */
    4.25  
    4.26  package org.apidesign.bck2brwsr.dew;
     5.1 --- a/dew/src/main/java/org/apidesign/bck2brwsr/dew/MemoryFileObject.java	Wed Oct 02 22:32:57 2013 +0200
     5.2 +++ b/dew/src/main/java/org/apidesign/bck2brwsr/dew/MemoryFileObject.java	Thu Oct 03 10:02:13 2013 +0200
     5.3 @@ -1,7 +1,19 @@
     5.4 -/*
     5.5 - * To change this license header, choose License Headers in Project Properties.
     5.6 - * To change this template file, choose Tools | Templates
     5.7 - * and open the template in the editor.
     5.8 +/**
     5.9 + * Back 2 Browser Bytecode Translator
    5.10 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
    5.11 + *
    5.12 + * This program is free software: you can redistribute it and/or modify
    5.13 + * it under the terms of the GNU General Public License as published by
    5.14 + * the Free Software Foundation, version 2 of the License.
    5.15 + *
    5.16 + * This program is distributed in the hope that it will be useful,
    5.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    5.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    5.19 + * GNU General Public License for more details.
    5.20 + *
    5.21 + * You should have received a copy of the GNU General Public License
    5.22 + * along with this program. Look for COPYING file in the top folder.
    5.23 + * If not, see http://opensource.org/licenses/GPL-2.0.
    5.24   */
    5.25  
    5.26  package org.apidesign.bck2brwsr.dew;