Skip to content

Commit

Permalink
Add GNU Licens and copyright.
Browse files Browse the repository at this point in the history
  • Loading branch information
tychobrailleur committed Oct 11, 2014
1 parent a74d56a commit 1cfd1e0
Show file tree
Hide file tree
Showing 7 changed files with 86 additions and 27 deletions.
1 change: 1 addition & 0 deletions src/main/java/biogenesis/Gene.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* Copyright (C) 2006-2010 Joan Queralt Molina
* (C) 2014 Sébastien Le Callonnec
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
1 change: 1 addition & 0 deletions src/main/java/biogenesis/Organism.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* Copyright (C) 2006-2010 Joan Queralt Molina
* (C) 2014 Sébastien Le Callonnec
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
Expand Down
25 changes: 16 additions & 9 deletions src/main/java/biogenesis/event/OrganismCollidedEvent.java
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
/* Copyright (C) 2014 Sébastien Le Callonnec
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
package biogenesis.event;

/**
*
* @author sebastien
*/
public class OrganismCollidedEvent {

}
24 changes: 16 additions & 8 deletions src/main/java/biogenesis/event/OrganismCollidedListener.java
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
/* Copyright (C) 2014 Sébastien Le Callonnec
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
package biogenesis.event;

/**
*
* @author sebastien
*/
public interface OrganismCollidedListener {
public void perform(OrganismCollidedEvent event);
}
24 changes: 18 additions & 6 deletions src/main/java/biogenesis/event/OrganismCreatedEvent.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
package biogenesis.event;

/**
/* Copyright (C) 2014 Sébastien Le Callonnec
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* @author sebastien
*/
public class OrganismCreatedEvent {

package biogenesis.event;

public class OrganismCreatedEvent {
}
21 changes: 17 additions & 4 deletions src/main/java/biogenesis/event/OrganismCreatedListener.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
package biogenesis.event;

/**
/* Copyright (C) 2014 Sébastien Le Callonnec
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* @author sebastien
*/
package biogenesis.event;

public interface OrganismCreatedListener {
public void perform(OrganismCreatedEvent event);
;}
17 changes: 17 additions & 0 deletions src/main/java/biogenesis/music/MusicPlayer.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/* Copyright (C) 2014 Sébastien Le Callonnec
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
package biogenesis.music;

import biogenesis.event.OrganismCollidedEvent;
Expand Down

0 comments on commit 1cfd1e0

Please sign in to comment.