summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-30 01:36:33 +0000
committerPaul Buetow <paul@buetow.org>2008-05-30 01:36:33 +0000
commit84b413b9be1d4b8d7ff7b2f3322c5a966315e61d (patch)
tree2d96530b817c214e3f39e446328fcac47615a61c
parent1a0b7c7d7cb84b1fa7ec1b59f3d28255d2e98ced (diff)
all java files now have a license header.
-rw-r--r--sources/core/VSMessage.java23
-rw-r--r--sources/core/VSProcess.java23
-rw-r--r--sources/core/VSTask.java23
-rw-r--r--sources/core/VSTaskManager.java23
-rw-r--r--sources/core/time/VSLamportTime.java23
-rw-r--r--sources/core/time/VSTime.java23
-rw-r--r--sources/core/time/VSVectorTime.java23
-rw-r--r--sources/events/VSAbstractEvent.java23
-rw-r--r--sources/events/VSRegisteredEvents.java23
-rw-r--r--sources/events/implementations/VSProcessCrashEvent.java23
-rw-r--r--sources/events/implementations/VSProcessRecoverEvent.java23
-rw-r--r--sources/events/internal/VSMessageReceiveEvent.java23
-rw-r--r--sources/events/internal/VSProtocolEvent.java23
-rw-r--r--sources/events/internal/VSProtocolScheduleEvent.java23
-rw-r--r--sources/exceptions/VSParseIntegerVectorException.java23
-rw-r--r--sources/prefs/VSDefaultPrefs.java23
-rw-r--r--sources/prefs/VSPrefs.java23
-rw-r--r--sources/prefs/VSPrefsRestriction.java23
-rw-r--r--sources/prefs/editors/VSAbstractBetterEditor.java23
-rw-r--r--sources/prefs/editors/VSAbstractEditor.java23
-rw-r--r--sources/prefs/editors/VSColorChooser.java23
-rw-r--r--sources/prefs/editors/VSEditorFrame.java23
-rw-r--r--sources/prefs/editors/VSEditorTable.java23
-rw-r--r--sources/prefs/editors/VSProcessEditor.java23
-rw-r--r--sources/prefs/editors/VSSimulatorEditor.java23
-rw-r--r--sources/protocols/VSAbstractProtocol.java23
-rw-r--r--sources/protocols/implementations/VSBasicMulticastProtocol.java23
-rw-r--r--sources/protocols/implementations/VSBerkelyTimeProtocol.java23
-rw-r--r--sources/protocols/implementations/VSBroadcastSturmProtocol.java23
-rw-r--r--sources/protocols/implementations/VSDummyProtocol.java23
-rw-r--r--sources/protocols/implementations/VSExternalTimeSyncProtocol.java23
-rw-r--r--sources/protocols/implementations/VSInternalTimeSyncProtocol.java23
-rw-r--r--sources/protocols/implementations/VSOnePhaseCommitProtocol.java23
-rw-r--r--sources/protocols/implementations/VSPingPongProtocol.java23
-rw-r--r--sources/protocols/implementations/VSReliableMulticastProtocol.java23
-rw-r--r--sources/protocols/implementations/VSTwoPhaseCommitProtocol.java23
-rw-r--r--sources/simulator/VSCreateTask.java23
-rw-r--r--sources/simulator/VSLogging.java23
-rw-r--r--sources/simulator/VSMain.java23
-rw-r--r--sources/simulator/VSMenuItemStates.java23
-rw-r--r--sources/simulator/VSSimulator.java23
-rw-r--r--sources/simulator/VSSimulatorCanvas.java23
-rw-r--r--sources/simulator/VSSimulatorFrame.java23
-rw-r--r--sources/utils/VSAbout.java23
-rw-r--r--sources/utils/VSClassLoader.java23
-rw-r--r--sources/utils/VSFrame.java23
-rw-r--r--sources/utils/VSInfoArea.java23
-rw-r--r--sources/utils/VSPriorityQueue.java23
-rw-r--r--sources/utils/VSRandom.java23
-rw-r--r--sources/utils/VSTools.java23
-rw-r--r--sources/utils/VSTupel.java23
51 files changed, 1071 insertions, 102 deletions
diff --git a/sources/core/VSMessage.java b/sources/core/VSMessage.java
index 25dbf27..333a2d2 100644
--- a/sources/core/VSMessage.java
+++ b/sources/core/VSMessage.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package core;
import core.time.*;
diff --git a/sources/core/VSProcess.java b/sources/core/VSProcess.java
index b6135d4..903700e 100644
--- a/sources/core/VSProcess.java
+++ b/sources/core/VSProcess.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package core;
import java.awt.*;
diff --git a/sources/core/VSTask.java b/sources/core/VSTask.java
index baf030a..406a59a 100644
--- a/sources/core/VSTask.java
+++ b/sources/core/VSTask.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package core;
import events.*;
diff --git a/sources/core/VSTaskManager.java b/sources/core/VSTaskManager.java
index 5878a85..50371cc 100644
--- a/sources/core/VSTaskManager.java
+++ b/sources/core/VSTaskManager.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package core;
import java.util.*;
diff --git a/sources/core/time/VSLamportTime.java b/sources/core/time/VSLamportTime.java
index af72a74..bcc840a 100644
--- a/sources/core/time/VSLamportTime.java
+++ b/sources/core/time/VSLamportTime.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package core.time;
/**
diff --git a/sources/core/time/VSTime.java b/sources/core/time/VSTime.java
index c5a2805..5273d2f 100644
--- a/sources/core/time/VSTime.java
+++ b/sources/core/time/VSTime.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package core.time;
/**
diff --git a/sources/core/time/VSVectorTime.java b/sources/core/time/VSVectorTime.java
index d999a48..33cb264 100644
--- a/sources/core/time/VSVectorTime.java
+++ b/sources/core/time/VSVectorTime.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package core.time;
import java.util.ArrayList;
diff --git a/sources/events/VSAbstractEvent.java b/sources/events/VSAbstractEvent.java
index dd3af7a..f054d04 100644
--- a/sources/events/VSAbstractEvent.java
+++ b/sources/events/VSAbstractEvent.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package events;
import core.VSProcess;
diff --git a/sources/events/VSRegisteredEvents.java b/sources/events/VSRegisteredEvents.java
index df7fce8..b822dd3 100644
--- a/sources/events/VSRegisteredEvents.java
+++ b/sources/events/VSRegisteredEvents.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package events;
import java.util.*;
diff --git a/sources/events/implementations/VSProcessCrashEvent.java b/sources/events/implementations/VSProcessCrashEvent.java
index 4feeede..68fc854 100644
--- a/sources/events/implementations/VSProcessCrashEvent.java
+++ b/sources/events/implementations/VSProcessCrashEvent.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package events.implementations;
import events.VSAbstractEvent;
diff --git a/sources/events/implementations/VSProcessRecoverEvent.java b/sources/events/implementations/VSProcessRecoverEvent.java
index d338dc8..3be8a48 100644
--- a/sources/events/implementations/VSProcessRecoverEvent.java
+++ b/sources/events/implementations/VSProcessRecoverEvent.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package events.implementations;
import events.VSAbstractEvent;
diff --git a/sources/events/internal/VSMessageReceiveEvent.java b/sources/events/internal/VSMessageReceiveEvent.java
index 07d5258..1ed38d9 100644
--- a/sources/events/internal/VSMessageReceiveEvent.java
+++ b/sources/events/internal/VSMessageReceiveEvent.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package events.internal;
import core.VSMessage;
diff --git a/sources/events/internal/VSProtocolEvent.java b/sources/events/internal/VSProtocolEvent.java
index 274e714..20c7cc5 100644
--- a/sources/events/internal/VSProtocolEvent.java
+++ b/sources/events/internal/VSProtocolEvent.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package events.internal;
import events.*;
diff --git a/sources/events/internal/VSProtocolScheduleEvent.java b/sources/events/internal/VSProtocolScheduleEvent.java
index 68d97e7..7a260a5 100644
--- a/sources/events/internal/VSProtocolScheduleEvent.java
+++ b/sources/events/internal/VSProtocolScheduleEvent.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package events.internal;
import events.*;
diff --git a/sources/exceptions/VSParseIntegerVectorException.java b/sources/exceptions/VSParseIntegerVectorException.java
index 9e4172c..c18703b 100644
--- a/sources/exceptions/VSParseIntegerVectorException.java
+++ b/sources/exceptions/VSParseIntegerVectorException.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package exceptions;
/**
diff --git a/sources/prefs/VSDefaultPrefs.java b/sources/prefs/VSDefaultPrefs.java
index 2932392..c56794b 100644
--- a/sources/prefs/VSDefaultPrefs.java
+++ b/sources/prefs/VSDefaultPrefs.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons
+ * Attribution-Noncommercial-Share Alike License a CC-by-nc-sa.
+ *
+ * The icon's homepage is http://code.google.com/p/ultimate-gnome/
*/
+
package prefs;
import java.awt.Color;
diff --git a/sources/prefs/VSPrefs.java b/sources/prefs/VSPrefs.java
index 730418b..df15a03 100644
--- a/sources/prefs/VSPrefs.java
+++ b/sources/prefs/VSPrefs.java
@@ -1,7 +1,26 @@
/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
+ * Copyright (c) 2008 Paul Buetow, vs@dev.buetow.org
+ *
+ * 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.
+ *
+ * All icons of the icons/ folder are under a Creative Commons