2003/09/19 05:01:38
authormegacz <megacz@xwt.org>
Fri, 30 Jan 2004 07:35:51 +0000 (07:35 +0000)
committermegacz <megacz@xwt.org>
Fri, 30 Jan 2004 07:35:51 +0000 (07:35 +0000)
darcs-hash:20040130073551-2ba56-641a2edcdcce68b47b96c55e2c6108082ea0cd46.gz

14 files changed:
src/org/xwt/plat/GCJ.java
src/org/xwt/plat/Java2.java
src/org/xwt/plat/Linux.java
src/org/xwt/plat/POSIX.java
src/org/xwt/plat/PalmOS.java
src/org/xwt/plat/Win32.java
src/org/xwt/plat/X11.java
src/org/xwt/util/Cache.java
src/org/xwt/util/DirtyList.java
src/org/xwt/util/Hash.java
src/org/xwt/util/Log.java
src/org/xwt/util/Queue.java
src/org/xwt/util/Semaphore.java
src/org/xwt/util/Vec.java

index f923516..9484439 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.plat;
 
 import org.xwt.*;
index f855961..40ae9c3 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.plat;
 
 import java.awt.*;
index d56960d..b9b1183 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.plat;
 
 import org.xwt.*;
index fd1ebef..908d309 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [LGPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [LGPL]
 package org.xwt.plat;
 
 import gnu.gcj.RawData;
index a717d2e..208c2b8 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.plat;
 import org.xwt.*;
 
index 0260252..ddd6116 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [LGPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [LGPL]
 package org.xwt.plat;
 
 import org.xwt.*;
index 97b989c..fec155c 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [LGPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [LGPL]
 package org.xwt.plat;
 
 import gnu.gcj.RawData;
index 27647d6..2822555 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.util;
 
 import java.util.*;
index 0368ef8..a3856af 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.util;
 
 import java.util.*;
index 2d73b10..b9626d1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.util;
 
 import java.util.*;
index 2e6d09e..4782b9f 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [LGPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [LGPL]
 package org.xwt.util;
 import org.xwt.js.*;
 import java.io.*;
index f923db3..7ed4850 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.util;
 
 /** A simple synchronized queue, implemented as an array */
index 278e0e6..65e2aa4 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.util;
 
 /** Simple implementation of a blocking, counting semaphore. */
index a602089..70be7d9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
+// Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL]
 package org.xwt.util;
 
 import java.util.*;