From be97eddc860362ec61281ed79f2d059c971accd2 Mon Sep 17 00:00:00 2001
From: Tor-Einar Skog <tor-einar.skog@bioforsk.no>
Date: Thu, 9 Jan 2014 11:03:57 +0100
Subject: [PATCH] Added license notice

---
 .../applescabmodel/AppleScabCalculations.java | 18 ++++++++++
 .../model/applescabmodel/AppleScabModel.java  | 34 ++++++++++++++++++-
 .../AscosporeMaturityTable.java               | 18 ++++++++++
 .../vips/model/applescabmodel/MillsTable.java | 18 ++++++++++
 .../model/applescabmodel/MillsTableKey.java   | 18 ++++++++++
 5 files changed, 105 insertions(+), 1 deletion(-)

diff --git a/src/main/java/no/bioforsk/vips/model/applescabmodel/AppleScabCalculations.java b/src/main/java/no/bioforsk/vips/model/applescabmodel/AppleScabCalculations.java
index 7a0cee7..ab1234b 100644
--- a/src/main/java/no/bioforsk/vips/model/applescabmodel/AppleScabCalculations.java
+++ b/src/main/java/no/bioforsk/vips/model/applescabmodel/AppleScabCalculations.java
@@ -1,3 +1,21 @@
+/*
+ * Copyright (c) 2013-2014 Bioforsk <http://www.bioforsk.no/>. 
+ * 
+ * This file is part of VIPS/AppleScabModel.
+ * VIPS/AppleScabModel is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * VIPS/AppleScabModel 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 Affero General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Affero General Public License
+ * along with VIPS/AppleScabModel. If not, see <http://www.gnu.org/licenses/>.
+ * 
+ */
 package no.bioforsk.vips.model.applescabmodel;
 
 import no.bioforsk.vips.util.DateMap;
diff --git a/src/main/java/no/bioforsk/vips/model/applescabmodel/AppleScabModel.java b/src/main/java/no/bioforsk/vips/model/applescabmodel/AppleScabModel.java
index f244862..ada81b4 100644
--- a/src/main/java/no/bioforsk/vips/model/applescabmodel/AppleScabModel.java
+++ b/src/main/java/no/bioforsk/vips/model/applescabmodel/AppleScabModel.java
@@ -1,3 +1,21 @@
+/*
+ * Copyright (c) 2013-2014 Bioforsk <http://www.bioforsk.no/>. 
+ * 
+ * This file is part of VIPS/AppleScabModel.
+ * VIPS/AppleScabModel is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * VIPS/AppleScabModel 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 Affero General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Affero General Public License
+ * along with VIPS/AppleScabModel. If not, see <http://www.gnu.org/licenses/>.
+ * 
+ */
 package no.bioforsk.vips.model.applescabmodel;
 
 import java.util.Date;
@@ -559,7 +577,21 @@ public class AppleScabModel extends I18nImpl implements Model{
 
     @Override
     public String getLicense() {
-        return "Open Source. Details will follow.";
+        return "Copyright (c) 2013 Bioforsk <http://www.bioforsk.no/>. \n" +
+            " \n" +
+            " This file is part of VIPS/AppleScabModel \n" +
+            " VIPS/AppleScabModel is free software: you can redistribute it and/or modify\n" +
+            " it under the terms of the GNU Affero General Public License as published by\n" +
+            " the Free Software Foundation, either version 3 of the License, or\n" +
+            " (at your option) any later version.\n" +
+            " \n" +
+            " VIPS/AppleScabModel is distributed in the hope that it will be useful,\n" +
+            " but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +
+            " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n" +
+            " GNU Affero General Public License for more details.\n" +
+            " \n" +
+            " You should have received a copy of the GNU Affero General Public License\n" +
+            " along with VIPS/AppleScabModel.  If not, see <http://www.gnu.org/licenses/>.";
     }
 
     @Override
diff --git a/src/main/java/no/bioforsk/vips/model/applescabmodel/AscosporeMaturityTable.java b/src/main/java/no/bioforsk/vips/model/applescabmodel/AscosporeMaturityTable.java
index a87ccc6..60b1afc 100644
--- a/src/main/java/no/bioforsk/vips/model/applescabmodel/AscosporeMaturityTable.java
+++ b/src/main/java/no/bioforsk/vips/model/applescabmodel/AscosporeMaturityTable.java
@@ -1,3 +1,21 @@
+/*
+ * Copyright (c) 2013-2014 Bioforsk <http://www.bioforsk.no/>. 
+ * 
+ * This file is part of VIPS/AppleScabModel.
+ * VIPS/AppleScabModel is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * VIPS/AppleScabModel 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 Affero General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Affero General Public License
+ * along with VIPS/AppleScabModel. If not, see <http://www.gnu.org/licenses/>.
+ * 
+ */
 package no.bioforsk.vips.model.applescabmodel;
 
 import java.util.Collections;
diff --git a/src/main/java/no/bioforsk/vips/model/applescabmodel/MillsTable.java b/src/main/java/no/bioforsk/vips/model/applescabmodel/MillsTable.java
index 444c77b..05b1cf1 100644
--- a/src/main/java/no/bioforsk/vips/model/applescabmodel/MillsTable.java
+++ b/src/main/java/no/bioforsk/vips/model/applescabmodel/MillsTable.java
@@ -1,3 +1,21 @@
+/*
+ * Copyright (c) 2013-2014 Bioforsk <http://www.bioforsk.no/>. 
+ * 
+ * This file is part of VIPS/AppleScabModel.
+ * VIPS/AppleScabModel is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * VIPS/AppleScabModel 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 Affero General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Affero General Public License
+ * along with VIPS/AppleScabModel. If not, see <http://www.gnu.org/licenses/>.
+ * 
+ */
 package no.bioforsk.vips.model.applescabmodel;
 
 import java.util.Collections;
diff --git a/src/main/java/no/bioforsk/vips/model/applescabmodel/MillsTableKey.java b/src/main/java/no/bioforsk/vips/model/applescabmodel/MillsTableKey.java
index d163604..6f649f2 100644
--- a/src/main/java/no/bioforsk/vips/model/applescabmodel/MillsTableKey.java
+++ b/src/main/java/no/bioforsk/vips/model/applescabmodel/MillsTableKey.java
@@ -1,3 +1,21 @@
+/*
+ * Copyright (c) 2013-2014 Bioforsk <http://www.bioforsk.no/>. 
+ * 
+ * This file is part of VIPS/AppleScabModel.
+ * VIPS/AppleScabModel is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * VIPS/AppleScabModel 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 Affero General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Affero General Public License
+ * along with VIPS/AppleScabModel. If not, see <http://www.gnu.org/licenses/>.
+ * 
+ */
 package no.bioforsk.vips.model.applescabmodel;
 
 import java.util.Objects;
-- 
GitLab