diff --git a/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/Main.java b/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/Main.java index 20eb5324d58e7f829890782f1ef5761c48800d4f..5308c211aac7f4e2ac7ee3b5872b1f7bb9ea57dd 100644 --- a/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/Main.java +++ b/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/Main.java @@ -1,11 +1,24 @@ /* * Main.java * - * Created on January 11, 2006, 9:11 AM + * Copyright (C) 2002-2007 + * ASTRON (Netherlands Foundation for Research in Astronomy) + * P.O.Box 2, 7990 AA Dwingeloo, The Netherlands, seg@astron.nl + * + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * To change this template, choose Tools | Options and locate the template under - * the Source Creation and Management node. Right-click the template and choose - * Open. You can then make changes to the template in the Source Editor. */ package nl.astron.lofar.sas.otb; @@ -16,8 +29,12 @@ import org.apache.log4j.Logger; import org.apache.log4j.PropertyConfigurator; /** + * This is the Main class for the OTB framework. * + * @created 11-01-2006, 9:11 * @author blaakmeer + * @version $Id$ + * @updated */ public class Main { diff --git a/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/MainFrame.java b/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/MainFrame.java index 228b597926130fa70535f55148bbce84a05129bc..1c72a57ff90591c284b408762280b6886e58e374 100644 --- a/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/MainFrame.java +++ b/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/MainFrame.java @@ -1,7 +1,25 @@ /* * MainFrame.java * - * Created on January 11, 2006, 9:31 AM + * Copyright (C) 2002-2007 + * ASTRON (Netherlands Foundation for Research in Astronomy) + * P.O.Box 2, 7990 AA Dwingeloo, The Netherlands, seg@astron.nl + * + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * */ package nl.astron.lofar.sas.otb; @@ -17,7 +35,10 @@ import nl.astron.lofar.sas.otbcomponents.*; /** * + * @created on 11-01-2006, 9:31 * @author blaakmeer + * @version $Id$ + * @updated */ public class MainFrame extends javax.swing.JFrame { diff --git a/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/SharedVars.java b/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/SharedVars.java index cfde26a02bc2a844cceebb8f3f94c951973b22ee..c743f1181a0f2aa03044e9068ddface8470dd800 100644 --- a/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/SharedVars.java +++ b/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/SharedVars.java @@ -1,16 +1,24 @@ /* * SharedVars.java * - * Created on April 12, 2006, 1:37 PM + * Copyright (C) 2002-2007 + * ASTRON (Netherlands Foundation for Research in Astronomy) + * P.O.Box 2, 7990 AA Dwingeloo, The Netherlands, seg@astron.nl * - * Class to hold variables that will be used between panels in the mainframe. - * This ensures that the Mainframe will stay package independend. + * 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. * - * Programmers that implement panels for other LOFAR packages can enter variables that need to be known - * between different pannels here. The Mainfram has a method to get this Holder class and so the variabes - * will be accessible between packages. + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * Please keep the file organised and cleam, add vars and their accessors under a tag with the package name they belong to * */ @@ -22,8 +30,19 @@ import nl.astron.lofar.sas.otb.util.OtdbRmi; import org.apache.log4j.Logger; /** + * Class to hold variables that will be used between panels in the mainframe. + * This ensures that the Mainframe will stay package independend. + * + * Programmers that implement panels for other LOFAR packages can enter variables that need to be known + * between different pannels here. The Mainfram has a method to get this Holder class and so the variabels + * will be accessible between packages. + * + * Please keep the file organised and clean, add vars and their accessors under a tag with the package name they belong to * + * @created 12-04-2006, 13:37 * @author coolen + * @version $Id$ + * @updated */ diff --git a/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/exceptions/NoAccessException.java b/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/exceptions/NoAccessException.java index 05dd772263c45671f21109c450ff4f630f80f264..237f1e397f1f44adcd541bb950e6f7ee2315f23a 100644 --- a/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/exceptions/NoAccessException.java +++ b/SAS/OTB/OTB/src/nl/astron/lofar/sas/otb/exceptions/NoAccessException.java @@ -1,6 +1,24 @@ /* * NoAccessException.java * + * Copyright (C) 2002-2007 + * ASTRON (Netherlands Foundation for Research in Astronomy) + * P.O.Box 2, 7990 AA Dwingeloo, The Netherlands, seg@astron.nl + * + * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * * Created on January 17, 2006, 5:28 PM * * To change this template, choose Tools | Options and locate the template under @@ -11,8 +29,10 @@ package nl.astron.lofar.sas.otb.exceptions; /** - * + * @created 17-01-2006, 17:28 * @author blaakmeer + * @version $Id$ + * @updated */ public class NoAccessException extends Exception {