You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(97) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(127) |
Feb
(34) |
Mar
(16) |
Apr
(26) |
May
(55) |
Jun
(107) |
Jul
(36) |
Aug
(72) |
Sep
(90) |
Oct
(41) |
Nov
(27) |
Dec
(13) |
2008 |
Jan
(37) |
Feb
(39) |
Mar
(98) |
Apr
(115) |
May
(134) |
Jun
(120) |
Jul
(86) |
Aug
(149) |
Sep
(68) |
Oct
(66) |
Nov
(104) |
Dec
(49) |
2009 |
Jan
(131) |
Feb
(132) |
Mar
(125) |
Apr
(172) |
May
(161) |
Jun
(43) |
Jul
(47) |
Aug
(38) |
Sep
(18) |
Oct
(6) |
Nov
(1) |
Dec
(15) |
2010 |
Jan
(21) |
Feb
(8) |
Mar
(10) |
Apr
(4) |
May
(9) |
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(4) |
2011 |
Jan
(23) |
Feb
(10) |
Mar
(13) |
Apr
(3) |
May
|
Jun
(19) |
Jul
(11) |
Aug
(22) |
Sep
|
Oct
(4) |
Nov
(2) |
Dec
(12) |
2012 |
Jan
(3) |
Feb
(4) |
Mar
(7) |
Apr
(3) |
May
|
Jun
(1) |
Jul
(1) |
Aug
(30) |
Sep
(3) |
Oct
(2) |
Nov
|
Dec
(8) |
2013 |
Jan
(3) |
Feb
(40) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(12) |
Dec
|
2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
|
2
(1) |
3
(11) |
4
|
5
|
6
|
7
|
8
|
9
|
10
(3) |
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
(6) |
31
|
|
|
|
|
|
|
From: <ls...@us...> - 2010-01-30 20:57:23
|
Revision: 5724 http://jnode.svn.sourceforge.net/jnode/?rev=5724&view=rev Author: lsantha Date: 2010-01-30 20:57:16 +0000 (Sat, 30 Jan 2010) Log Message: ----------- Findbus fixes: removed unneeded checks (condition is always false) Modified Paths: -------------- trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/DoubleWordItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/DoubleWordItem.java Modified: trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/DoubleWordItem.java =================================================================== --- trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/DoubleWordItem.java 2010-01-30 20:56:41 UTC (rev 5723) +++ trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/DoubleWordItem.java 2010-01-30 20:57:16 UTC (rev 5724) @@ -217,8 +217,8 @@ * Gets the offset from this item to the FramePointer register. This is only * valid if this item has a LOCAL kind. * - * @return In 32-bit mode, use {@link #getLsbOffsetToFP()}or - * {@link #getMsbOffsetToFP()}instead. + * @return In 32-bit mode, use {@link #getLsbOffsetToFP(EmitterContext)} or + * {@link #getMsbOffsetToFP(EmitterContext)} instead. */ final short getOffsetToFP(EmitterContext ec) { if (ec.getStream().isCode32()) { @@ -736,7 +736,7 @@ } /** - * @see org.jnode.vm.x86.compiler.l1a.Item#spill(EmitterContext, Register) + * @see org.jnode.vm.x86.compiler.l1a.Item#spill(EmitterContext, org.jnode.assembler.x86.X86Register) */ final void spill(EmitterContext ec, X86Register reg) { final X86Assembler os = ec.getStream(); @@ -771,7 +771,7 @@ } /** - * @see org.jnode.vm.x86.compiler.l1a.Item#uses(org.jnode.assembler.x86.Register) + * @see org.jnode.vm.x86.compiler.l1a.Item#uses(org.jnode.assembler.x86.X86Register) */ final boolean uses(X86Register reg) { return (isGPR() && ((this.msb == reg) || (this.lsb == reg) || (this.reg == reg))); @@ -780,7 +780,7 @@ /** * enquire whether the item uses a volatile register * - * @param reg + * @param pool * @return true, when this item uses a volatile register. */ final boolean usesVolatileRegister(X86RegisterPool pool) { @@ -810,19 +810,10 @@ if (msb == null) { throw new IllegalStateException("msb cannot be null"); } - if (!(lsb instanceof GPR32)) { - throw new IllegalStateException("lsb must be GPR32"); - } - if (!(msb instanceof GPR32)) { - throw new IllegalStateException("msb must be GPR32"); - } } else { if (reg == null) { throw new IllegalStateException("reg cannot be null"); } - if (!(reg instanceof GPR64)) { - throw new IllegalStateException("reg must be GPR64"); - } } break; } Modified: trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/DoubleWordItem.java =================================================================== --- trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/DoubleWordItem.java 2010-01-30 20:56:41 UTC (rev 5723) +++ trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/DoubleWordItem.java 2010-01-30 20:57:16 UTC (rev 5724) @@ -217,8 +217,8 @@ * Gets the offset from this item to the FramePointer register. This is only * valid if this item has a LOCAL kind. * - * @return In 32-bit mode, use {@link #getLsbOffsetToFP()}or - * {@link #getMsbOffsetToFP()}instead. + * @return In 32-bit mode, use {@link #getLsbOffsetToFP(EmitterContext)} or + * {@link #getMsbOffsetToFP(EmitterContext)} instead. */ final short getOffsetToFP(EmitterContext ec) { if (ec.getStream().isCode32()) { @@ -739,7 +739,8 @@ } /** - * @see org.jnode.vm.x86.compiler.l1a.Item#spill(EmitterContext, Register) + * @see org.jnode.vm.x86.compiler.l1a.Item#spill(org.jnode.vm.x86.compiler.l1a.EmitterContext, + * org.jnode.assembler.x86.X86Register) */ final void spill(EmitterContext ec, X86Register reg) { final X86Assembler os = ec.getStream(); @@ -774,7 +775,7 @@ } /** - * @see org.jnode.vm.x86.compiler.l1a.Item#uses(org.jnode.assembler.x86.Register) + * @see org.jnode.vm.x86.compiler.l1a.Item#uses(org.jnode.assembler.x86.X86Register) */ final boolean uses(X86Register reg) { return (isGPR() && ((this.msb == reg) || (this.lsb == reg) || (this.reg == reg))); @@ -783,7 +784,7 @@ /** * enquire whether the item uses a volatile register * - * @param reg + * @param pool * @return true, when this item uses a volatile register. */ final boolean usesVolatileRegister(X86RegisterPool pool) { @@ -813,19 +814,10 @@ if (msb == null) { throw new IllegalStateException("msb cannot be null"); } - if (!(lsb instanceof GPR32)) { - throw new IllegalStateException("lsb must be GPR32"); - } - if (!(msb instanceof GPR32)) { - throw new IllegalStateException("msb must be GPR32"); - } } else { if (reg == null) { throw new IllegalStateException("reg cannot be null"); } - if (!(reg instanceof GPR64)) { - throw new IllegalStateException("reg must be GPR64"); - } } break; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-30 20:56:47
|
Revision: 5723 http://jnode.svn.sourceforge.net/jnode/?rev=5723&view=rev Author: lsantha Date: 2010-01-30 20:56:41 +0000 (Sat, 30 Jan 2010) Log Message: ----------- Findbugs fixes: inner class can be static. Modified Paths: -------------- trunk/core/src/core/org/jnode/assembler/NativeStream.java trunk/core/src/core/org/jnode/assembler/x86/X86BinaryAssembler.java trunk/core/src/core/org/jnode/assembler/x86/X86TextAssembler.java Modified: trunk/core/src/core/org/jnode/assembler/NativeStream.java =================================================================== --- trunk/core/src/core/org/jnode/assembler/NativeStream.java 2010-01-30 20:55:58 UTC (rev 5722) +++ trunk/core/src/core/org/jnode/assembler/NativeStream.java 2010-01-30 20:56:41 UTC (rev 5723) @@ -211,7 +211,7 @@ /** * A wrapper for constructing objects in the native stream. */ - public abstract class ObjectInfo { + public abstract static class ObjectInfo { /** * Mark the current location as the end of this object end fixup the objectheader. @@ -219,7 +219,7 @@ public abstract void markEnd(); } - public abstract class ObjectRef { + public abstract static class ObjectRef { private Object object; /** Modified: trunk/core/src/core/org/jnode/assembler/x86/X86BinaryAssembler.java =================================================================== --- trunk/core/src/core/org/jnode/assembler/x86/X86BinaryAssembler.java 2010-01-30 20:55:58 UTC (rev 5722) +++ trunk/core/src/core/org/jnode/assembler/x86/X86BinaryAssembler.java 2010-01-30 20:56:41 UTC (rev 5723) @@ -133,7 +133,7 @@ } } - public final class UnresolvedOffset { + public static final class UnresolvedOffset { private final int offset; private final int patchSize; Modified: trunk/core/src/core/org/jnode/assembler/x86/X86TextAssembler.java =================================================================== --- trunk/core/src/core/org/jnode/assembler/x86/X86TextAssembler.java 2010-01-30 20:55:58 UTC (rev 5722) +++ trunk/core/src/core/org/jnode/assembler/x86/X86TextAssembler.java 2010-01-30 20:56:41 UTC (rev 5723) @@ -55,7 +55,7 @@ } - class ObjectRefImpl extends NativeStream.ObjectRef { + static class ObjectRefImpl extends NativeStream.ObjectRef { public ObjectRefImpl(Object object) { super(object); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-30 20:56:04
|
Revision: 5722 http://jnode.svn.sourceforge.net/jnode/?rev=5722&view=rev Author: lsantha Date: 2010-01-30 20:55:58 +0000 (Sat, 30 Jan 2010) Log Message: ----------- Findbugs fixes: fields made final. Modified Paths: -------------- trunk/core/src/core/org/jnode/assembler/x86/X86Constants.java trunk/core/src/core/org/jnode/boot/Main.java trunk/core/src/core/org/jnode/vm/memmgr/VmHeapManager.java trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultHeapManager.java Modified: trunk/core/src/core/org/jnode/assembler/x86/X86Constants.java =================================================================== --- trunk/core/src/core/org/jnode/assembler/x86/X86Constants.java 2010-01-30 20:55:18 UTC (rev 5721) +++ trunk/core/src/core/org/jnode/assembler/x86/X86Constants.java 2010-01-30 20:55:58 UTC (rev 5722) @@ -176,12 +176,12 @@ /** * Use 32-bit code */ - public static Mode CODE32 = new Mode(BITS32); + public static final Mode CODE32 = new Mode(BITS32); /** * Use 64-bit code */ - public static Mode CODE64 = new Mode(BITS64); + public static final Mode CODE64 = new Mode(BITS64); private Mode(int operandSize) { this.operandSize = operandSize; Modified: trunk/core/src/core/org/jnode/boot/Main.java =================================================================== --- trunk/core/src/core/org/jnode/boot/Main.java 2010-01-30 20:55:18 UTC (rev 5721) +++ trunk/core/src/core/org/jnode/boot/Main.java 2010-01-30 20:55:58 UTC (rev 5722) @@ -46,7 +46,10 @@ public static final String MAIN_METHOD_SIGNATURE = "()I"; public static final String REGISTRY_FIELD_NAME = "pluginRegistry"; - protected static PluginRegistryModel pluginRegistry; + /** + * Initialized in org.jnode.build.x86.BootImageBuilder.initMain(). + */ + private static PluginRegistryModel pluginRegistry; /** * First java entry point after the assembler kernel has booted. Modified: trunk/core/src/core/org/jnode/vm/memmgr/VmHeapManager.java =================================================================== --- trunk/core/src/core/org/jnode/vm/memmgr/VmHeapManager.java 2010-01-30 20:55:18 UTC (rev 5721) +++ trunk/core/src/core/org/jnode/vm/memmgr/VmHeapManager.java 2010-01-30 20:55:58 UTC (rev 5722) @@ -46,12 +46,12 @@ @MagicPermission public abstract class VmHeapManager extends VmSystemObject { - public static int TRACE_BASIC = 1; // enable basic debugging of GC phases - public static int TRACE_ALLOC = 2; // enable debugging of GC internal allocation - public static int TRACE_TRIGGER = 4; // enable debugging of GC triggering / scheduling - public static int TRACE_OOM = 8; // enable debugging of OOM events - public static int TRACE_AD_HOC = 16; // enable ad hoc debugging - public static int TRACE_FLAGS = 31; // all of the above + public static final int TRACE_BASIC = 1; // enable basic debugging of GC phases + public static final int TRACE_ALLOC = 2; // enable debugging of GC internal allocation + public static final int TRACE_TRIGGER = 4; // enable debugging of GC triggering / scheduling + public static final int TRACE_OOM = 8; // enable debugging of OOM events + public static final int TRACE_AD_HOC = 16; // enable ad hoc debugging + public static final int TRACE_FLAGS = 31; // all of the above /** * Has this manager been initialized yet Modified: trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultHeapManager.java =================================================================== --- trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultHeapManager.java 2010-01-30 20:55:18 UTC (rev 5721) +++ trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultHeapManager.java 2010-01-30 20:55:58 UTC (rev 5722) @@ -56,7 +56,7 @@ * When this percentage of the free memory has been allocated, a GC is * triggered (0..1.0) */ - public static float GC_TRIGGER_PERCENTAGE = 0.75f; + public static final float GC_TRIGGER_PERCENTAGE = 0.75f; /** * The boot heap This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-30 20:55:25
|
Revision: 5721 http://jnode.svn.sourceforge.net/jnode/?rev=5721&view=rev Author: lsantha Date: 2010-01-30 20:55:18 +0000 (Sat, 30 Jan 2010) Log Message: ----------- Findbugs fixes: fixed inconsistent synchronzation. Renamed stack-like methods. Modified Paths: -------------- trunk/core/src/core/org/jnode/util/ByteQueue.java trunk/core/src/core/org/jnode/util/ByteQueueProcessorThread.java trunk/gui/src/driver/org/jnode/driver/input/usb/USBKeyboardDriver.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2ByteChannel.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2Driver.java Modified: trunk/core/src/core/org/jnode/util/ByteQueue.java =================================================================== --- trunk/core/src/core/org/jnode/util/ByteQueue.java 2010-01-30 12:59:18 UTC (rev 5720) +++ trunk/core/src/core/org/jnode/util/ByteQueue.java 2010-01-30 20:55:18 UTC (rev 5721) @@ -31,7 +31,6 @@ public class ByteQueue { // FIXME ... Looking at the way this class is used, I think it may needs an // atomic drain operation and/or a close operation. - // FIXME ... The method names are wrong. 'PUSH' and 'POP' is for stacks not queues!! // FIXME ... Make the ByteQueue API and behavior mirror the Queue API and behavior. /** @@ -66,7 +65,7 @@ * made by removing (and discarding) the byte at the head of the queue. * @param o the byte to be added to the queue. */ - public synchronized void push(byte o) { + public synchronized void enQueue(byte o) { data[bottom] = o; bottom++; if (bottom >= size) { @@ -88,7 +87,7 @@ * * @return the byte removed, or zero if the method call was interrupted. */ - public synchronized byte pop() { + public synchronized byte deQueue() { while (top == bottom) { /* Q is empty */ try { wait(); @@ -110,7 +109,7 @@ /** * Remove a byte from the head of the queue, blocking with a timeout if data is - * not immediately available. Unlike {@link #pop()}, this method does <b>not</b> + * not immediately available. Unlike {@link #deQueue()}, this method does <b>not</b> * return zero when interrupted! * * @param timeout the maximum time (in milliseconds) to wait for data to become @@ -119,7 +118,7 @@ * @throws InterruptedException if the method call is interrupted. * @throws TimeoutException if no data is available within the required time. */ - public synchronized byte pop(long timeout) + public synchronized byte deQueue(long timeout) throws TimeoutException, InterruptedException { while (top == bottom) { /* Q is empty */ wait(timeout); @@ -140,7 +139,7 @@ /** * Return the byte at the head of the queue without removing it. If data is * not immediately available, the method will block (with a timeout) until - * data is available. Unlike {@link #pop()}, this method does <b>not</b> + * data is available. Unlike {@link #deQueue()}, this method does <b>not</b> * return zero when interrupted! * * @param timeout the maximum time (in milliseconds) to wait for data to become @@ -164,9 +163,15 @@ * Test if there is no data in the queue. * @return {@code true} if the queue is empty, {@code false} otherwise. */ - public boolean isEmpty() { + public synchronized boolean isEmpty() { // FIXME ... this should be synchronized. return (top == bottom); } - + + /** + * Clears the queue. + */ + public synchronized void clear() { + top = bottom = 0; + } } Modified: trunk/core/src/core/org/jnode/util/ByteQueueProcessorThread.java =================================================================== --- trunk/core/src/core/org/jnode/util/ByteQueueProcessorThread.java 2010-01-30 12:59:18 UTC (rev 5720) +++ trunk/core/src/core/org/jnode/util/ByteQueueProcessorThread.java 2010-01-30 20:55:18 UTC (rev 5721) @@ -96,7 +96,7 @@ public void run() { while (!stop) { try { - final byte value = queue.pop(); + final byte value = queue.deQueue(); processor.process(value); } catch (Exception ex) { handleException(ex); Modified: trunk/gui/src/driver/org/jnode/driver/input/usb/USBKeyboardDriver.java =================================================================== --- trunk/gui/src/driver/org/jnode/driver/input/usb/USBKeyboardDriver.java 2010-01-30 12:59:18 UTC (rev 5720) +++ trunk/gui/src/driver/org/jnode/driver/input/usb/USBKeyboardDriver.java 2010-01-30 20:55:18 UTC (rev 5721) @@ -165,13 +165,13 @@ // Modifier changed final int keyCode = usb_kbd_keycode[i + 224]; // It is an extended keycode - keyCodeQueue.push((byte) KeyboardInterpreter.XT_EXTENDED); + keyCodeQueue.enQueue((byte) KeyboardInterpreter.XT_EXTENDED); if ((old[0] & bit) != 0) { // Released - keyCodeQueue.push((byte) (keyCode | KeyboardInterpreter.XT_RELEASE)); + keyCodeQueue.enQueue((byte) (keyCode | KeyboardInterpreter.XT_RELEASE)); } else { // Pressed - keyCodeQueue.push((byte) keyCode); + keyCodeQueue.enQueue((byte) keyCode); } } } @@ -181,7 +181,7 @@ // Key released final int keyCode = usb_kbd_keycode[old[i] & 0xFF]; if (keyCode > 0) { - keyCodeQueue.push((byte) (keyCode | KeyboardInterpreter.XT_RELEASE)); + keyCodeQueue.enQueue((byte) (keyCode | KeyboardInterpreter.XT_RELEASE)); } else { log.debug("Unknown scancode released " + (old[i] & 0xFF)); } @@ -190,7 +190,7 @@ // Key pressed final int keyCode = usb_kbd_keycode[cur[i] & 0xFF]; if (keyCode > 0) { - keyCodeQueue.push((byte) keyCode); + keyCodeQueue.enQueue((byte) keyCode); } else { log.debug("Unknown scancode pressed " + (cur[i] & 0xFF)); } Modified: trunk/gui/src/driver/org/jnode/driver/ps2/PS2ByteChannel.java =================================================================== --- trunk/gui/src/driver/org/jnode/driver/ps2/PS2ByteChannel.java 2010-01-30 12:59:18 UTC (rev 5720) +++ trunk/gui/src/driver/org/jnode/driver/ps2/PS2ByteChannel.java 2010-01-30 20:55:18 UTC (rev 5721) @@ -44,7 +44,7 @@ * @see org.jnode.system.IRQHandler#handleInterrupt(int) */ public void handleScancode(int b) { - queue.push((byte) b); + queue.enQueue((byte) b); } /** @@ -58,7 +58,7 @@ // FIXME: proper exception handling (if end of queue -> IOException) int i; for (i = 0; i < dst.remaining(); i++) { - dst.put(queue.pop()); + dst.put(queue.deQueue()); } return i; } @@ -71,7 +71,7 @@ if (!isOpen()) { throw new ClosedChannelException(); } - return queue.pop(timeout) & 0xFF; + return queue.deQueue(timeout) & 0xFF; } /** @@ -116,11 +116,7 @@ * Remove all data from this channel */ public void clear() { - // FIXME ... there is synchronization issues here. The 'isEmpty' method - // is not synchronized, so we may not see the real state of the queue. - while (!queue.isEmpty()) { - queue.pop(); - } + queue.clear(); } } Modified: trunk/gui/src/driver/org/jnode/driver/ps2/PS2Driver.java =================================================================== --- trunk/gui/src/driver/org/jnode/driver/ps2/PS2Driver.java 2010-01-30 12:59:18 UTC (rev 5720) +++ trunk/gui/src/driver/org/jnode/driver/ps2/PS2Driver.java 2010-01-30 20:55:18 UTC (rev 5721) @@ -51,7 +51,7 @@ * @see org.jnode.system.IRQHandler#handleInterrupt(int) */ public void handleScancode(int b) { - queue.push((byte) b); + queue.enQueue((byte) b); } /** @@ -89,7 +89,7 @@ // FIXME: proper exception handling (if end of queue -> IOException) int i; for (i = 0; i < dst.remaining(); i++) { - dst.put(queue.pop()); + dst.put(queue.deQueue()); } return i; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-30 12:59:38
|
Revision: 5720 http://jnode.svn.sourceforge.net/jnode/?rev=5720&view=rev Author: lsantha Date: 2010-01-30 12:59:18 +0000 (Sat, 30 Jan 2010) Log Message: ----------- PMD updated to version 4.2.5. Fixed 'pmd' Ant target. Modified Paths: -------------- trunk/all/build.xml Added Paths: ----------- trunk/builder/lib/pmd/asm-3.1.jar trunk/builder/lib/pmd/jaxen-1.1.1.jar trunk/builder/lib/pmd/junit-4.4.jar trunk/builder/lib/pmd/pmd-4.2.5.jar Removed Paths: ------------- trunk/builder/lib/pmd/jaxen-core-1.0-fcs.jar trunk/builder/lib/pmd/pmd-3.0.jar trunk/builder/lib/pmd/saxpath-1.0-fcs.jar trunk/builder/lib/pmd/xercesImpl-2.6.2.jar trunk/builder/lib/pmd/xmlParserAPIs-2.6.2.jar Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2010-01-30 08:30:27 UTC (rev 5719) +++ trunk/all/build.xml 2010-01-30 12:59:18 UTC (rev 5720) @@ -93,13 +93,6 @@ <!-- libraries needed to check plugin dependencies --> <property name="bcel-5.1.jar" value="${root.dir}/builder/lib/bcel-5.1.jar" /> - <!-- libraries needed to check rules in source code --> - <property name="pmd.jar" value="${root.dir}/builder/lib/pmd/pmd-3.0.jar"/> - <property name="jaxen.jar" value="${root.dir}/builder/lib/pmd/jaxen-core-1.0-fcs.jar"/> - <property name="saxpath.jar" value="${root.dir}/builder/lib/pmd/saxpath-1.0-fcs.jar"/> - <property name="xerces.jar" value="${root.dir}/builder/lib/pmd/xercesImpl-2.6.2.jar"/> - <property name="xmlParserAPIs.jar" value="${root.dir}/builder/pmd/lib/xmlParserAPIs-2.6.2.jar"/> - <!-- lists of plugins to use while booting --> <property name="default-plugin-list" value="${root.dir}/all/conf/default-plugin-list.xml"/> <property name="full-plugin-list" value="${root.dir}/all/conf/full-plugin-list.xml"/> @@ -1076,50 +1069,46 @@ </checkDeps> </target> - <!-- Define the task that check the rules --> - <taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask" - classpathref="cp-jnode"> - <classpath> - <pathelement location="${pmd.jar}"/> - <pathelement location="${jaxen.jar}"/> - <pathelement location="${saxpath.jar}"/> - <pathelement location="${xerces.jar}"/> - <pathelement location="${xmlParserAPIs.jar}"/> - </classpath> - </taskdef> + <target name="pmd" depends="prepare"> + <echo> + WARNING: PMD rulset must be customized before regular use. + </echo> + <property name="pmd.home" value="../builder/lib/pmd"/> + <!-- Define the task that check the rules --> + <taskdef name="pmd" classname="net.sourceforge.pmd.ant.PMDTask"> + <classpath> + <fileset dir="${pmd.home}" includes="*.jar"/> + </classpath> + </taskdef> + <!-- Macro used to check that the rules are applied in the source code --> + <macrodef name="checkPMD"> + <attribute name="projectName"/> + <attribute name="webSrcUrl"/> + <attribute name="projectSrc"/> + <sequential> + <property name="nbFailures" value="0"/> + <echo message="Scanning @{projectName}."/> + <property name="tmp" value="../@{projectSrc}"/> + <pmd failuresPropertyName="nbFailures"> + <formatter type="html" toFile="${reports.dir}/pmd_report-@{projectName}.html"/> + <ruleset>rulesets/favorites.xml</ruleset> + <ruleset>rulesets/basic.xml</ruleset> - <!-- Macro used to check that the rules are applied in the source code --> - <macrodef name="checkProjectRules"> - <attribute name="projectName"/> - <attribute name="webSrcUrl"/> - <attribute name="projectSrc"/> - <sequential> - <property name="nbFailures" value="0"/> - <echo message="Scanning @{projectName}."/> - <property name="tmp" value="../@{projectSrc}"/> - <pmd failuresPropertyName="nbFailures"> - <formatter type="html" toFile="${reports.dir}/pmd_report-@{projectName}.html"/> - - <ruleset>rulesets/favorites.xml</ruleset> - <ruleset>rulesets/basic.xml</ruleset> - - <fileset dir="../@{projectSrc}" includes="**/*.java"/> - </pmd> - <echo message="There was ${nbFailures} failures in @{projectName}."/> - </sequential> - </macrodef> - - <target name="checkJNodeRules" depends="prepare"> + <fileset dir="../@{projectSrc}" includes="**/*.java"/> + </pmd> + <echo message="There was ${nbFailures} failures in @{projectName}."/> + </sequential> + </macrodef> <parallel> - <checkProjectRules projectName="distr" webSrcUrl="distr" projectSrc="distr"/> - <checkProjectRules projectName="JNode-Builder" webSrcUrl="builder" projectSrc="builder"/> - <checkProjectRules projectName="JNode-Core" webSrcUrl="core" projectSrc="core"/> - <checkProjectRules projectName="JNode-FS" webSrcUrl="fs" projectSrc="fs"/> - <checkProjectRules projectName="JNode-GUI" webSrcUrl="gui" projectSrc="gui"/> - <checkProjectRules projectName="JNode-Net" webSrcUrl="net" projectSrc="net"/> - <checkProjectRules projectName="JNode-Shell" webSrcUrl="shell" projectSrc="shell"/> - <checkProjectRules projectName="JNode-TestUI" webSrcUrl="textui" projectSrc="textui"/> + <checkPMD projectName="distr" webSrcUrl="distr" projectSrc="distr"/> + <checkPMD projectName="JNode-Builder" webSrcUrl="builder" projectSrc="builder"/> + <checkPMD projectName="JNode-Core" webSrcUrl="core" projectSrc="core"/> + <checkPMD projectName="JNode-FS" webSrcUrl="fs" projectSrc="fs"/> + <checkPMD projectName="JNode-GUI" webSrcUrl="gui" projectSrc="gui"/> + <checkPMD projectName="JNode-Net" webSrcUrl="net" projectSrc="net"/> + <checkPMD projectName="JNode-Shell" webSrcUrl="shell" projectSrc="shell"/> + <checkPMD projectName="JNode-TestUI" webSrcUrl="textui" projectSrc="textui"/> </parallel> </target> Added: trunk/builder/lib/pmd/asm-3.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/pmd/asm-3.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/pmd/jaxen-1.1.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/pmd/jaxen-1.1.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Deleted: trunk/builder/lib/pmd/jaxen-core-1.0-fcs.jar =================================================================== (Binary files differ) Added: trunk/builder/lib/pmd/junit-4.4.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/pmd/junit-4.4.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Deleted: trunk/builder/lib/pmd/pmd-3.0.jar =================================================================== (Binary files differ) Added: trunk/builder/lib/pmd/pmd-4.2.5.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/pmd/pmd-4.2.5.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Deleted: trunk/builder/lib/pmd/saxpath-1.0-fcs.jar =================================================================== (Binary files differ) Deleted: trunk/builder/lib/pmd/xercesImpl-2.6.2.jar =================================================================== (Binary files differ) Deleted: trunk/builder/lib/pmd/xmlParserAPIs-2.6.2.jar =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-30 08:30:35
|
Revision: 5719 http://jnode.svn.sourceforge.net/jnode/?rev=5719&view=rev Author: lsantha Date: 2010-01-30 08:30:27 +0000 (Sat, 30 Jan 2010) Log Message: ----------- Findbugs updated to version 1.3.9. Fixed finbugs ant target. Modified Paths: -------------- trunk/all/build.xml Added Paths: ----------- trunk/builder/lib/findbugs/ trunk/builder/lib/findbugs/lib/ trunk/builder/lib/findbugs/lib/annotations.jar trunk/builder/lib/findbugs/lib/ant.jar trunk/builder/lib/findbugs/lib/asm-3.1.jar trunk/builder/lib/findbugs/lib/asm-analysis-3.1.jar trunk/builder/lib/findbugs/lib/asm-commons-3.1.jar trunk/builder/lib/findbugs/lib/asm-tree-3.1.jar trunk/builder/lib/findbugs/lib/asm-util-3.1.jar trunk/builder/lib/findbugs/lib/asm-xml-3.1.jar trunk/builder/lib/findbugs/lib/bcel.jar trunk/builder/lib/findbugs/lib/buggy.icns trunk/builder/lib/findbugs/lib/commons-lang-2.4.jar trunk/builder/lib/findbugs/lib/dom4j-1.6.1.jar trunk/builder/lib/findbugs/lib/findbugs-ant.jar trunk/builder/lib/findbugs/lib/findbugs.jar trunk/builder/lib/findbugs/lib/jFormatString.jar trunk/builder/lib/findbugs/lib/jaxen-1.1.1.jar trunk/builder/lib/findbugs/lib/jdepend-2.9.jar trunk/builder/lib/findbugs/lib/jsr305.jar trunk/builder/lib/findbugs/lib/mysql-connector-java-5.1.7-bin.jar Removed Paths: ------------- trunk/core/lib/findbugs/ Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2010-01-10 14:46:36 UTC (rev 5718) +++ trunk/all/build.xml 2010-01-30 08:30:27 UTC (rev 5719) @@ -1199,12 +1199,16 @@ </target> <target name="findbugs" depends="assemble-plugins"> - <taskdef name="findbugs" classpath="../core/lib/findbugs/lib/findbugs-ant.jar" + <property name="findbugs.home" value="../builder/lib/findbugs"/> + <property name="findbugs.output" value="${reports.dir}/findbugs.html"/> + <taskdef name="findbugs" classpath="${findbugs.home}/lib/findbugs-ant.jar" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"/> - <findbugs home="../core/lib/findbugs/" output="html" outputFile="./build/findbugs.html" > + <findbugs home="${findbugs.home}" output="html" outputFile="${findbugs.output}" > <auxclasspath> <pathelement location="./build/plugins/rt_${jnode-ver}.jar" /> + <pathelement location="./build/plugins/rt.vm_${jnode-ver}.jar" /> <pathelement location="./build/plugins/org.classpath.ext.core_${jnode-ver}.jar" /> + <pathelement location="./build/plugins/org.classpath.ext.security_${jnode-ver}.jar" /> <pathelement location="./build/plugins/nanoxml_1.4.jar" /> <pathelement location="${nanoxml-java.jar}" /> <pathelement location="${log4j.jar}" /> Added: trunk/builder/lib/findbugs/lib/annotations.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/annotations.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/ant.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/ant.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/asm-3.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/asm-3.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/asm-analysis-3.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/asm-analysis-3.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/asm-commons-3.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/asm-commons-3.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/asm-tree-3.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/asm-tree-3.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/asm-util-3.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/asm-util-3.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/asm-xml-3.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/asm-xml-3.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/bcel.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/bcel.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/buggy.icns =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/buggy.icns ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/commons-lang-2.4.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/commons-lang-2.4.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/dom4j-1.6.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/dom4j-1.6.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/findbugs-ant.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/findbugs-ant.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/findbugs.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/findbugs.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/jFormatString.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/jFormatString.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/jaxen-1.1.1.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/jaxen-1.1.1.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/jdepend-2.9.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/jdepend-2.9.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/jsr305.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/jsr305.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/builder/lib/findbugs/lib/mysql-connector-java-5.1.7-bin.jar =================================================================== (Binary files differ) Property changes on: trunk/builder/lib/findbugs/lib/mysql-connector-java-5.1.7-bin.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-10 14:46:42
|
Revision: 5718 http://jnode.svn.sourceforge.net/jnode/?rev=5718&view=rev Author: lsantha Date: 2010-01-10 14:46:36 +0000 (Sun, 10 Jan 2010) Log Message: ----------- Added native stub for com.sun.management.UnixOperatingSystem. Modified Paths: -------------- trunk/core/src/openjdk/vm/com/sun/management/NativeUnixOperatingSystem.java Modified: trunk/core/src/openjdk/vm/com/sun/management/NativeUnixOperatingSystem.java =================================================================== --- trunk/core/src/openjdk/vm/com/sun/management/NativeUnixOperatingSystem.java 2010-01-10 14:43:09 UTC (rev 5717) +++ trunk/core/src/openjdk/vm/com/sun/management/NativeUnixOperatingSystem.java 2010-01-10 14:46:36 UTC (rev 5718) @@ -11,7 +11,7 @@ */ private static long getCommittedVirtualMemorySize(UnixOperatingSystem instance) { //todo implement it - return 0; + return -1; } /** * @see com.sun.management.UnixOperatingSystem#getTotalSwapSpaceSize() @@ -32,7 +32,7 @@ */ private static long getProcessCpuTime(UnixOperatingSystem instance) { //todo implement it - return 0; + return -1; } /** * @see com.sun.management.UnixOperatingSystem#getFreePhysicalMemorySize() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-10 14:43:20
|
Revision: 5717 http://jnode.svn.sourceforge.net/jnode/?rev=5717&view=rev Author: lsantha Date: 2010-01-10 14:43:09 +0000 (Sun, 10 Jan 2010) Log Message: ----------- Added native stub for com.sun.management.UnixOperatingSystem. Added Paths: ----------- trunk/core/src/openjdk/vm/com/sun/management/NativeUnixOperatingSystem.java Added: trunk/core/src/openjdk/vm/com/sun/management/NativeUnixOperatingSystem.java =================================================================== --- trunk/core/src/openjdk/vm/com/sun/management/NativeUnixOperatingSystem.java (rev 0) +++ trunk/core/src/openjdk/vm/com/sun/management/NativeUnixOperatingSystem.java 2010-01-10 14:43:09 UTC (rev 5717) @@ -0,0 +1,69 @@ +package com.sun.management; + +import org.jnode.vm.VmSystem; + +/** + * @see com.sun.management.UnixOperatingSystem + */ +class NativeUnixOperatingSystem { + /** + * @see com.sun.management.UnixOperatingSystem#getCommittedVirtualMemorySize() + */ + private static long getCommittedVirtualMemorySize(UnixOperatingSystem instance) { + //todo implement it + return 0; + } + /** + * @see com.sun.management.UnixOperatingSystem#getTotalSwapSpaceSize() + */ + private static long getTotalSwapSpaceSize(UnixOperatingSystem instance) { + //todo implement it + return 0; + } + /** + * @see com.sun.management.UnixOperatingSystem#getFreeSwapSpaceSize() + */ + private static long getFreeSwapSpaceSize(UnixOperatingSystem instance) { + //todo implement it + return 0; + } + /** + * @see com.sun.management.UnixOperatingSystem#getProcessCpuTime() + */ + private static long getProcessCpuTime(UnixOperatingSystem instance) { + //todo implement it + return 0; + } + /** + * @see com.sun.management.UnixOperatingSystem#getFreePhysicalMemorySize() + */ + private static long getFreePhysicalMemorySize(UnixOperatingSystem instance) { + return VmSystem.freeMemory(); + } + /** + * @see com.sun.management.UnixOperatingSystem#getTotalPhysicalMemorySize() + */ + private static long getTotalPhysicalMemorySize(UnixOperatingSystem instance) { + return VmSystem.totalMemory(); + } + /** + * @see com.sun.management.UnixOperatingSystem#getOpenFileDescriptorCount() + */ + private static long getOpenFileDescriptorCount(UnixOperatingSystem instance) { + //todo implement it + return 0; + } + /** + * @see com.sun.management.UnixOperatingSystem#getMaxFileDescriptorCount() + */ + private static long getMaxFileDescriptorCount(UnixOperatingSystem instance) { + //todo implement it + return 0; + } + /** + * @see com.sun.management.UnixOperatingSystem#initialize() + */ + private static void initialize() { + //todo implement it + } +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-10 14:42:09
|
Revision: 5716 http://jnode.svn.sourceforge.net/jnode/?rev=5716&view=rev Author: lsantha Date: 2010-01-10 14:41:53 +0000 (Sun, 10 Jan 2010) Log Message: ----------- Added native stub for com.sun.management.UnixOperatingSystem. Added Paths: ----------- trunk/core/src/openjdk/vm/com/sun/management/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-03 13:34:56
|
Revision: 5715 http://jnode.svn.sourceforge.net/jnode/?rev=5715&view=rev Author: lsantha Date: 2010-01-03 13:34:49 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Fixed exludes for header update. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2010-01-03 13:33:07 UTC (rev 5714) +++ trunk/all/build.xml 2010-01-03 13:34:49 UTC (rev 5715) @@ -860,18 +860,9 @@ <header update="on" headerFile="${root.dir}/all/template/header.txt"> <fileset dir="${root.dir}/builder/src/builder" includes="**/*.java"/> <fileset dir="${root.dir}/cli/src/commands" includes="**/*.java"/> - <fileset dir="${root.dir}/core/src/classpath/ext" includes="**/*.java"/> + <fileset dir="${root.dir}/core/src/classpath/ext" includes="**/*.java" excludes="gnu/classpath/jdwp/**/*.java"/> <fileset dir="${root.dir}/core/src/classpath/vm" includes="**/*.java" - excludes="gnu/classpath/jdwp/VMFrame.java, - gnu/classpath/jdwp/VMIdManager.java, - gnu/classpath/jdwp/VMMethod.java, - gnu/classpath/jdwp/VMVirtualMachine.java, - gnu/classpath/VMStackWalker.java, - gnu/java/lang/VMInstrumentationImpl.java, - gnu/java/nio/VMChannel.java, - java/lang/Thread.java, - java/lang/VMProcess.java, - java/lang/VMSystem.java"/> + excludes="java/lang/VMProcess.java,java/lang/VMSystem.java"/> <fileset dir="${root.dir}/core/src/openjdk/vm" includes="**/*.java" excludes="java/lang/NativeStrictMath.java"/> <fileset dir="${root.dir}/core/src/core" includes="**/*.java" excludes="org/jnode/imageio/jpeg/JPEGDecoder"/> <fileset dir="${root.dir}/core/src/mmtk-vm" includes="**/*.java" excludes="org/mmtk/vm/**/*.java"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-03 13:33:13
|
Revision: 5714 http://jnode.svn.sourceforge.net/jnode/?rev=5714&view=rev Author: lsantha Date: 2010-01-03 13:33:07 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated header. Modified Paths: -------------- trunk/all/template/header.txt Modified: trunk/all/template/header.txt =================================================================== --- trunk/all/template/header.txt 2010-01-03 13:32:10 UTC (rev 5713) +++ trunk/all/template/header.txt 2010-01-03 13:33:07 UTC (rev 5714) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-03 13:32:19
|
Revision: 5713 http://jnode.svn.sourceforge.net/jnode/?rev=5713&view=rev Author: lsantha Date: 2010-01-03 13:32:10 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/shell/src/emu/org/jnode/emu/DeviceManager.java trunk/shell/src/emu/org/jnode/emu/Emu.java trunk/shell/src/emu/org/jnode/emu/EmuException.java trunk/shell/src/shell/org/jnode/shell/AbstractCommand.java trunk/shell/src/shell/org/jnode/shell/ArgumentCompleter.java trunk/shell/src/shell/org/jnode/shell/AsyncCommandInvoker.java trunk/shell/src/shell/org/jnode/shell/BuiltinCommandInfo.java trunk/shell/src/shell/org/jnode/shell/Command.java trunk/shell/src/shell/org/jnode/shell/CommandCompletions.java trunk/shell/src/shell/org/jnode/shell/CommandInfo.java trunk/shell/src/shell/org/jnode/shell/CommandInterpreter.java trunk/shell/src/shell/org/jnode/shell/CommandInvoker.java trunk/shell/src/shell/org/jnode/shell/CommandLine.java trunk/shell/src/shell/org/jnode/shell/CommandRunnable.java trunk/shell/src/shell/org/jnode/shell/CommandRunner.java trunk/shell/src/shell/org/jnode/shell/CommandShell.java trunk/shell/src/shell/org/jnode/shell/CommandShellReader.java trunk/shell/src/shell/org/jnode/shell/CommandThread.java trunk/shell/src/shell/org/jnode/shell/CommandThreadImpl.java trunk/shell/src/shell/org/jnode/shell/Completable.java trunk/shell/src/shell/org/jnode/shell/DefaultCommandInvoker.java trunk/shell/src/shell/org/jnode/shell/DefaultInterpreter.java trunk/shell/src/shell/org/jnode/shell/NoTokensAvailableException.java trunk/shell/src/shell/org/jnode/shell/PathnamePattern.java trunk/shell/src/shell/org/jnode/shell/RedirectingInterpreter.java trunk/shell/src/shell/org/jnode/shell/Shell.java trunk/shell/src/shell/org/jnode/shell/ShellControlException.java trunk/shell/src/shell/org/jnode/shell/ShellException.java trunk/shell/src/shell/org/jnode/shell/ShellFailureException.java trunk/shell/src/shell/org/jnode/shell/ShellInvocationException.java trunk/shell/src/shell/org/jnode/shell/ShellManager.java trunk/shell/src/shell/org/jnode/shell/ShellSyntaxException.java trunk/shell/src/shell/org/jnode/shell/ShellUtils.java trunk/shell/src/shell/org/jnode/shell/SimpleCommandInvoker.java trunk/shell/src/shell/org/jnode/shell/SymbolSource.java trunk/shell/src/shell/org/jnode/shell/ThreadCommandInvoker.java trunk/shell/src/shell/org/jnode/shell/ThreadExitListener.java trunk/shell/src/shell/org/jnode/shell/alias/AliasManager.java trunk/shell/src/shell/org/jnode/shell/alias/NoSuchAliasException.java trunk/shell/src/shell/org/jnode/shell/alias/def/DefaultAliasManager.java trunk/shell/src/shell/org/jnode/shell/bjorne/AliasBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/AssignmentArgument.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneAliasDefinitionArgument.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneAliasNameArgument.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneArithmeticEvaluator.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneBuiltinCommandInfo.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneCompletable.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneCompleter.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneContext.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneControlException.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneInterpreter.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneParser.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjornePipeline.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneShellPlugin.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneSubshellRunner.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneToken.java trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneTokenizer.java trunk/shell/src/shell/org/jnode/shell/bjorne/BreakBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/CaseCommandNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/CaseItemNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/CharIterator.java trunk/shell/src/shell/org/jnode/shell/bjorne/ColonBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/CommandNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/ContinueBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/ExitBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/ExportBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/ForCommandNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/FunctionDefinitionNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/IfCommandNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/ListCommandNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/LoopCommandNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/ReadBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/ReadonlyBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/RedirectionNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/ReturnBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/SetBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/SetFlagArgument.java trunk/shell/src/shell/org/jnode/shell/bjorne/ShiftBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/SimpleCommandNode.java trunk/shell/src/shell/org/jnode/shell/bjorne/SourceBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/UnaliasBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/UnsetBuiltin.java trunk/shell/src/shell/org/jnode/shell/bjorne/VariableNameArgument.java trunk/shell/src/shell/org/jnode/shell/bjorne/VariableSlot.java trunk/shell/src/shell/org/jnode/shell/command/bsh/BshCommand.java trunk/shell/src/shell/org/jnode/shell/command/driver/DeviceCommand.java trunk/shell/src/shell/org/jnode/shell/command/driver/console/ClearConsoleCommand.java trunk/shell/src/shell/org/jnode/shell/command/driver/console/ConsoleCommand.java trunk/shell/src/shell/org/jnode/shell/command/driver/system/acpi/AcpiCommand.java trunk/shell/src/shell/org/jnode/shell/command/driver/system/bus/SMBusCommand.java trunk/shell/src/shell/org/jnode/shell/command/test/SuiteCommand.java trunk/shell/src/shell/org/jnode/shell/command/test/TestCommand.java trunk/shell/src/shell/org/jnode/shell/def/DefaultShellManager.java trunk/shell/src/shell/org/jnode/shell/def/ShellPlugin.java trunk/shell/src/shell/org/jnode/shell/help/CommandLineElement.java trunk/shell/src/shell/org/jnode/shell/help/CompletionException.java trunk/shell/src/shell/org/jnode/shell/help/EnhancedHelp.java trunk/shell/src/shell/org/jnode/shell/help/Help.java trunk/shell/src/shell/org/jnode/shell/help/HelpException.java trunk/shell/src/shell/org/jnode/shell/help/HelpFactory.java trunk/shell/src/shell/org/jnode/shell/help/def/DefaultHelpFactory.java trunk/shell/src/shell/org/jnode/shell/help/def/NewSyntaxHelp.java trunk/shell/src/shell/org/jnode/shell/help/def/SystemHelpPlugin.java trunk/shell/src/shell/org/jnode/shell/help/def/TextHelpBase.java trunk/shell/src/shell/org/jnode/shell/io/BaseCommandIO.java trunk/shell/src/shell/org/jnode/shell/io/CommandIO.java trunk/shell/src/shell/org/jnode/shell/io/CommandIOException.java trunk/shell/src/shell/org/jnode/shell/io/CommandIOHolder.java trunk/shell/src/shell/org/jnode/shell/io/CommandIOMarker.java trunk/shell/src/shell/org/jnode/shell/io/CommandInput.java trunk/shell/src/shell/org/jnode/shell/io/CommandInputOutput.java trunk/shell/src/shell/org/jnode/shell/io/CommandOutput.java trunk/shell/src/shell/org/jnode/shell/io/FanoutWriter.java trunk/shell/src/shell/org/jnode/shell/io/NullInputStream.java trunk/shell/src/shell/org/jnode/shell/io/NullOutputStream.java trunk/shell/src/shell/org/jnode/shell/io/Pipeline.java trunk/shell/src/shell/org/jnode/shell/io/PipelineInputStream.java trunk/shell/src/shell/org/jnode/shell/io/PipelineOutputStream.java trunk/shell/src/shell/org/jnode/shell/io/ShellConsoleReader.java trunk/shell/src/shell/org/jnode/shell/io/ShellConsoleWriter.java trunk/shell/src/shell/org/jnode/shell/isolate/IsolateCommandInvoker.java trunk/shell/src/shell/org/jnode/shell/isolate/IsolateCommandLauncher.java trunk/shell/src/shell/org/jnode/shell/isolate/IsolateCommandThreadImpl.java trunk/shell/src/shell/org/jnode/shell/isolate/IsolateSocket.java trunk/shell/src/shell/org/jnode/shell/isolate/IsolateSocketImpl.java trunk/shell/src/shell/org/jnode/shell/proclet/AbstractProxyPrintStream.java trunk/shell/src/shell/org/jnode/shell/proclet/Proclet.java trunk/shell/src/shell/org/jnode/shell/proclet/ProcletCommandInvoker.java trunk/shell/src/shell/org/jnode/shell/proclet/ProcletException.java trunk/shell/src/shell/org/jnode/shell/proclet/ProcletIOContext.java trunk/shell/src/shell/org/jnode/shell/proclet/ProcletProxyInputStream.java trunk/shell/src/shell/org/jnode/shell/proclet/ProcletProxyPrintStream.java trunk/shell/src/shell/org/jnode/shell/proclet/ProcletProxyStream.java trunk/shell/src/shell/org/jnode/shell/syntax/AliasArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/AlternativesSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/Argument.java trunk/shell/src/shell/org/jnode/shell/syntax/ArgumentBundle.java trunk/shell/src/shell/org/jnode/shell/syntax/ArgumentSpecLoader.java trunk/shell/src/shell/org/jnode/shell/syntax/ArgumentSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/ClassNameArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/CommandSyntaxException.java trunk/shell/src/shell/org/jnode/shell/syntax/CountryArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/DefaultSyntaxManager.java trunk/shell/src/shell/org/jnode/shell/syntax/DeviceArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/EmptySyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/EnumArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/FileArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/FlagArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/GroupSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/HostNameArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/IntegerArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/KeyboardLayoutArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/LanguageArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/Log4jLevelArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/Log4jLoggerArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/LongArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/MappedArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/MuAlternation.java trunk/shell/src/shell/org/jnode/shell/syntax/MuArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/MuBackReference.java trunk/shell/src/shell/org/jnode/shell/syntax/MuParser.java trunk/shell/src/shell/org/jnode/shell/syntax/MuPreset.java trunk/shell/src/shell/org/jnode/shell/syntax/MuSequence.java trunk/shell/src/shell/org/jnode/shell/syntax/MuSymbol.java trunk/shell/src/shell/org/jnode/shell/syntax/MuSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/OptionSetSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/OptionSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/OptionalSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/PluginArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/PluginSyntaxSpecAdapter.java trunk/shell/src/shell/org/jnode/shell/syntax/PortNumberArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/PowersetSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/PropertyNameArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/RepeatSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/SequenceSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/SharedStack.java trunk/shell/src/shell/org/jnode/shell/syntax/ShellPropertyNameArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/SizeArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/StringArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/SymbolSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/Syntax.java trunk/shell/src/shell/org/jnode/shell/syntax/SyntaxArgumentMissingException.java trunk/shell/src/shell/org/jnode/shell/syntax/SyntaxBundle.java trunk/shell/src/shell/org/jnode/shell/syntax/SyntaxFailureException.java trunk/shell/src/shell/org/jnode/shell/syntax/SyntaxManager.java trunk/shell/src/shell/org/jnode/shell/syntax/SyntaxMultiplicityException.java trunk/shell/src/shell/org/jnode/shell/syntax/SyntaxSpecAdapter.java trunk/shell/src/shell/org/jnode/shell/syntax/SyntaxSpecLoader.java trunk/shell/src/shell/org/jnode/shell/syntax/SystemSyntaxPlugin.java trunk/shell/src/shell/org/jnode/shell/syntax/ThreadNameArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/URLArgument.java trunk/shell/src/shell/org/jnode/shell/syntax/VerbSyntax.java trunk/shell/src/shell/org/jnode/shell/syntax/XMLSyntaxSpecAdapter.java trunk/shell/src/test/org/jnode/test/shell/AllTests.java trunk/shell/src/test/org/jnode/test/shell/Cassowary.java trunk/shell/src/test/org/jnode/test/shell/CompletionHelper.java trunk/shell/src/test/org/jnode/test/shell/CompletionInfoTest.java trunk/shell/src/test/org/jnode/test/shell/CompletionTest.java trunk/shell/src/test/org/jnode/test/shell/DefaultSyntaxCompletionTest.java trunk/shell/src/test/org/jnode/test/shell/DeviceManager.java trunk/shell/src/test/org/jnode/test/shell/MyAliasCommand.java trunk/shell/src/test/org/jnode/test/shell/MyCompileCommand.java trunk/shell/src/test/org/jnode/test/shell/MyCpuIDCommand.java trunk/shell/src/test/org/jnode/test/shell/MyDuhCommand.java trunk/shell/src/test/org/jnode/test/shell/MyEchoCommand.java trunk/shell/src/test/org/jnode/test/shell/PathnamePatternTest.java trunk/shell/src/test/org/jnode/test/shell/bjorne/BjorneArithmeticEvaluatorTest.java trunk/shell/src/test/org/jnode/test/shell/bjorne/BjorneCompletionTest.java trunk/shell/src/test/org/jnode/test/shell/bjorne/BjorneContextTest.java trunk/shell/src/test/org/jnode/test/shell/bjorne/BjorneParserTest.java trunk/shell/src/test/org/jnode/test/shell/bjorne/BjornePseudoPlugin.java trunk/shell/src/test/org/jnode/test/shell/bjorne/BjorneTokenizerTest.java trunk/shell/src/test/org/jnode/test/shell/harness/ClassTestRunner.java trunk/shell/src/test/org/jnode/test/shell/harness/CommandTestRunner.java trunk/shell/src/test/org/jnode/test/shell/harness/DummyPseudoPlugin.java trunk/shell/src/test/org/jnode/test/shell/harness/PluginSpecification.java trunk/shell/src/test/org/jnode/test/shell/harness/PseudoPlugin.java trunk/shell/src/test/org/jnode/test/shell/harness/ScriptTestRunner.java trunk/shell/src/test/org/jnode/test/shell/harness/TestCommandShell.java trunk/shell/src/test/org/jnode/test/shell/harness/TestEmu.java trunk/shell/src/test/org/jnode/test/shell/harness/TestHarness.java trunk/shell/src/test/org/jnode/test/shell/harness/TestRunnable.java trunk/shell/src/test/org/jnode/test/shell/harness/TestRunnerBase.java trunk/shell/src/test/org/jnode/test/shell/harness/TestRunnerException.java trunk/shell/src/test/org/jnode/test/shell/harness/TestSetSpecification.java trunk/shell/src/test/org/jnode/test/shell/harness/TestSpecification.java trunk/shell/src/test/org/jnode/test/shell/harness/TestSpecificationException.java trunk/shell/src/test/org/jnode/test/shell/harness/TestSpecificationParser.java trunk/shell/src/test/org/jnode/test/shell/harness/TestsAbandonedException.java trunk/shell/src/test/org/jnode/test/shell/harness/TextContent.java trunk/shell/src/test/org/jnode/test/shell/help/DefaultHelpTest.java trunk/shell/src/test/org/jnode/test/shell/io/PipelineTest.java trunk/shell/src/test/org/jnode/test/shell/io/ReaderInputStreamTest.java trunk/shell/src/test/org/jnode/test/shell/io/WriterOutputStreamTest.java trunk/shell/src/test/org/jnode/test/shell/proclet/ProcletStreamTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/AllTests.java trunk/shell/src/test/org/jnode/test/shell/syntax/AlternativesSyntaxTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/ArgumentBundleTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/ArgumentMultiplicityTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/ArgumentTypesTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/CommandLineTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/DefaultTokenizerTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/MuParserTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/MuParserTest2.java trunk/shell/src/test/org/jnode/test/shell/syntax/MuSyntaxTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/OptionSetSyntaxTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/OptionSyntaxTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/PowersetSyntaxTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/RepeatSyntaxTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/SequenceSyntaxTest.java trunk/shell/src/test/org/jnode/test/shell/syntax/TestAliasManager.java trunk/shell/src/test/org/jnode/test/shell/syntax/TestShell.java trunk/shell/src/test/org/jnode/test/shell/syntax/TestSyntaxManager.java Modified: trunk/shell/src/emu/org/jnode/emu/DeviceManager.java =================================================================== --- trunk/shell/src/emu/org/jnode/emu/DeviceManager.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/emu/org/jnode/emu/DeviceManager.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/emu/org/jnode/emu/Emu.java =================================================================== --- trunk/shell/src/emu/org/jnode/emu/Emu.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/emu/org/jnode/emu/Emu.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/emu/org/jnode/emu/EmuException.java =================================================================== --- trunk/shell/src/emu/org/jnode/emu/EmuException.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/emu/org/jnode/emu/EmuException.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/AbstractCommand.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/AbstractCommand.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/AbstractCommand.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/ArgumentCompleter.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ArgumentCompleter.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ArgumentCompleter.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/AsyncCommandInvoker.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/AsyncCommandInvoker.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/AsyncCommandInvoker.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/BuiltinCommandInfo.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/BuiltinCommandInfo.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/BuiltinCommandInfo.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell; import org.jnode.shell.syntax.ArgumentBundle; Modified: trunk/shell/src/shell/org/jnode/shell/Command.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/Command.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/Command.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/CommandCompletions.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandCompletions.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandCompletions.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/CommandInfo.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandInfo.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandInfo.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/CommandInterpreter.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandInterpreter.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandInterpreter.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/CommandInvoker.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandInvoker.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandInvoker.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/CommandLine.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandLine.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandLine.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/CommandRunnable.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandRunnable.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandRunnable.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell; public interface CommandRunnable extends Runnable { Modified: trunk/shell/src/shell/org/jnode/shell/CommandRunner.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandRunner.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandRunner.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/CommandShell.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandShell.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandShell.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/CommandShellReader.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandShellReader.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandShellReader.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell; import java.io.IOException; Modified: trunk/shell/src/shell/org/jnode/shell/CommandThread.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandThread.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandThread.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/CommandThreadImpl.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/CommandThreadImpl.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/CommandThreadImpl.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/Completable.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/Completable.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/Completable.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/DefaultCommandInvoker.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/DefaultCommandInvoker.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/DefaultCommandInvoker.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/DefaultInterpreter.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/DefaultInterpreter.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/DefaultInterpreter.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/NoTokensAvailableException.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/NoTokensAvailableException.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/NoTokensAvailableException.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/PathnamePattern.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/PathnamePattern.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/PathnamePattern.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/RedirectingInterpreter.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/RedirectingInterpreter.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/RedirectingInterpreter.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/Shell.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/Shell.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/Shell.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/ShellControlException.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ShellControlException.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ShellControlException.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* - * $Id: Shell.java 5542 2009-06-03 14:47:18Z crawley $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell; /** Modified: trunk/shell/src/shell/org/jnode/shell/ShellException.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ShellException.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ShellException.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/ShellFailureException.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ShellFailureException.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ShellFailureException.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/ShellInvocationException.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ShellInvocationException.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ShellInvocationException.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/ShellManager.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ShellManager.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ShellManager.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/ShellSyntaxException.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ShellSyntaxException.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ShellSyntaxException.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/ShellUtils.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ShellUtils.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ShellUtils.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/SimpleCommandInvoker.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/SimpleCommandInvoker.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/SimpleCommandInvoker.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* - * $Id: CommandInvoker.java 4977 2009-02-02 09:09:41Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/SymbolSource.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/SymbolSource.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/SymbolSource.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/ThreadCommandInvoker.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ThreadCommandInvoker.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ThreadCommandInvoker.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/ThreadExitListener.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/ThreadExitListener.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/ThreadExitListener.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/alias/AliasManager.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/alias/AliasManager.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/alias/AliasManager.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/alias/NoSuchAliasException.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/alias/NoSuchAliasException.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/alias/NoSuchAliasException.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/alias/def/DefaultAliasManager.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/alias/def/DefaultAliasManager.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/alias/def/DefaultAliasManager.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/AliasBuiltin.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/AliasBuiltin.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/AliasBuiltin.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/AssignmentArgument.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/AssignmentArgument.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/AssignmentArgument.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell.bjorne; import org.jnode.driver.console.CompletionInfo; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneAliasDefinitionArgument.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneAliasDefinitionArgument.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneAliasDefinitionArgument.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell.bjorne; import org.jnode.driver.console.CompletionInfo; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneAliasNameArgument.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneAliasNameArgument.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneAliasNameArgument.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell.bjorne; import org.jnode.driver.console.CompletionInfo; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneArithmeticEvaluator.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneArithmeticEvaluator.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneArithmeticEvaluator.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell.bjorne; import java.util.ArrayDeque; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneBuiltin.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneBuiltin.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneBuiltin.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell.bjorne; import org.jnode.shell.AbstractCommand; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneBuiltinCommandInfo.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneBuiltinCommandInfo.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneBuiltinCommandInfo.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell.bjorne; import org.jnode.shell.BuiltinCommandInfo; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneCompletable.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneCompletable.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneCompletable.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneCompleter.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneCompleter.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneCompleter.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell.bjorne; import static org.jnode.shell.bjorne.BjorneToken.TOK_ASSIGNMENT; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneContext.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneContext.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneContext.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneControlException.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneControlException.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneControlException.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneInterpreter.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneInterpreter.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneInterpreter.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneParser.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneParser.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneParser.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjornePipeline.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjornePipeline.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjornePipeline.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.shell.bjorne; import java.io.IOException; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneShellPlugin.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneShellPlugin.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneShellPlugin.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneSubshellRunner.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneSubshellRunner.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneSubshellRunner.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.shell.bjorne; import org.jnode.shell.CommandRunnable; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneToken.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneToken.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneToken.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneTokenizer.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneTokenizer.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BjorneTokenizer.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/BreakBuiltin.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/BreakBuiltin.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/BreakBuiltin.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/CaseCommandNode.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/CaseCommandNode.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/CaseCommandNode.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.shell.bjorne; import org.jnode.shell.CommandRunnable; Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/CaseItemNode.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/CaseItemNode.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/CaseItemNode.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/CharIterator.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/CharIterator.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/CharIterator.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/ColonBuiltin.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/ColonBuiltin.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/ColonBuiltin.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/CommandNode.java =================================================================== --- trunk/shell/src/shell/org/jnode/shell/bjorne/CommandNode.java 2010-01-03 13:13:59 UTC (rev 5712) +++ trunk/shell/src/shell/org/jnode/shell/bjorne/CommandNode.java 2010-01-03 13:32:10 UTC (rev 5713) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/shell/src/shell/org/jnode/shell/bjorne/ContinueBuiltin.java =================================================================== --- trunk/shell/... [truncated message content] |
From: <ls...@us...> - 2010-01-03 13:14:09
|
Revision: 5712 http://jnode.svn.sourceforge.net/jnode/?rev=5712&view=rev Author: lsantha Date: 2010-01-03 13:13:59 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/net/src/driver/org/jnode/driver/net/NetDeviceAPI.java trunk/net/src/driver/org/jnode/driver/net/NetDeviceEvent.java trunk/net/src/driver/org/jnode/driver/net/NetDeviceListener.java trunk/net/src/driver/org/jnode/driver/net/NetworkException.java trunk/net/src/driver/org/jnode/driver/net/WirelessNetDeviceAPI.java trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xConstants.java trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xCore.java trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xDriver.java trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xFlags.java trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xRxRing.java trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xTxBuffer.java trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xConstants.java trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xCore.java trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xDriver.java trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xFlags.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Buffer.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Constants.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Core.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Driver.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Flags.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Registers.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100RxFD.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Stats.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100TxFD.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Utils.java trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/AbstractEthernetDriver.java trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/BasicEthernetDriver.java trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/Flags.java trunk/net/src/driver/org/jnode/driver/net/event/LinkStatusEvent.java trunk/net/src/driver/org/jnode/driver/net/lance/BufferManager.java trunk/net/src/driver/org/jnode/driver/net/lance/DWordIOAccess.java trunk/net/src/driver/org/jnode/driver/net/lance/Descriptor.java trunk/net/src/driver/org/jnode/driver/net/lance/DescriptorRing.java trunk/net/src/driver/org/jnode/driver/net/lance/IOAccess.java trunk/net/src/driver/org/jnode/driver/net/lance/InitializationBlock32Bit.java trunk/net/src/driver/org/jnode/driver/net/lance/LanceConstants.java trunk/net/src/driver/org/jnode/driver/net/lance/LanceCore.java trunk/net/src/driver/org/jnode/driver/net/lance/LanceDriver.java trunk/net/src/driver/org/jnode/driver/net/lance/LanceFlags.java trunk/net/src/driver/org/jnode/driver/net/lance/RxDescriptor.java trunk/net/src/driver/org/jnode/driver/net/lance/RxDescriptorRing.java trunk/net/src/driver/org/jnode/driver/net/lance/TxDescriptor.java trunk/net/src/driver/org/jnode/driver/net/lance/TxDescriptorRing.java trunk/net/src/driver/org/jnode/driver/net/lance/WordIOAccess.java trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackDevice.java trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackDriver.java trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackFinder.java trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Constants.java trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Core.java trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Driver.java trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Flags.java trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000PacketHeader.java trunk/net/src/driver/org/jnode/driver/net/ne2000/pci/Ne2000PCI.java trunk/net/src/driver/org/jnode/driver/net/ne2000/pci/Ne2000PCIDriver.java trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2CommFrame.java trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2CommandResponse.java trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Constants.java trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Core.java trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Driver.java trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Flags.java trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2IO.java trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2InfoFrame.java trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Record.java trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Constants.java trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Core.java trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Driver.java trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Flags.java trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139RxRing.java trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139TxBuffer.java trunk/net/src/driver/org/jnode/driver/net/spi/AbstractDeviceCore.java trunk/net/src/driver/org/jnode/driver/net/spi/AbstractNetDriver.java trunk/net/src/driver/org/jnode/driver/net/spi/NetDeviceEventProcessor.java trunk/net/src/driver/org/jnode/driver/net/usb/UsbNetConstant.java trunk/net/src/driver/org/jnode/driver/net/usb/UsbNetDeviceToDriverMapper.java trunk/net/src/driver/org/jnode/driver/net/usb/bluetooth/UsbBluetoothDevice.java trunk/net/src/driver/org/jnode/driver/net/usb/bluetooth/UsbBluetoothDriver.java trunk/net/src/driver/org/jnode/driver/net/via_rhine/ViaRhineConstants.java trunk/net/src/driver/org/jnode/driver/net/via_rhine/ViaRhineCore.java trunk/net/src/driver/org/jnode/driver/net/via_rhine/ViaRhineDesc.java trunk/net/src/driver/org/jnode/driver/net/via_rhine/ViaRhineDriver.java trunk/net/src/driver/org/jnode/driver/net/via_rhine/ViaRhineFlags.java trunk/net/src/driver/org/jnode/driver/net/via_rhine/ViaRhineRing.java trunk/net/src/driver/org/jnode/driver/net/via_rhine/ViaRhineRxRing.java trunk/net/src/driver/org/jnode/driver/net/via_rhine/ViaRhineTxRing.java trunk/net/src/driver/org/jnode/driver/net/wireless/spi/WirelessDeviceCore.java trunk/net/src/driver/org/jnode/driver/net/wireless/spi/WirelessEthernetDriver.java trunk/net/src/net/org/jnode/net/HardwareAddress.java trunk/net/src/net/org/jnode/net/InvalidLayerException.java trunk/net/src/net/org/jnode/net/LayerAlreadyRegisteredException.java trunk/net/src/net/org/jnode/net/LayerHeader.java trunk/net/src/net/org/jnode/net/LinkLayer.java trunk/net/src/net/org/jnode/net/LinkLayerHeader.java trunk/net/src/net/org/jnode/net/NetPermission.java trunk/net/src/net/org/jnode/net/NetworkLayer.java trunk/net/src/net/org/jnode/net/NetworkLayerHeader.java trunk/net/src/net/org/jnode/net/NetworkLayerManager.java trunk/net/src/net/org/jnode/net/NoSuchProtocolException.java trunk/net/src/net/org/jnode/net/ProtocolAddress.java trunk/net/src/net/org/jnode/net/ProtocolAddressInfo.java trunk/net/src/net/org/jnode/net/Resolver.java trunk/net/src/net/org/jnode/net/SocketBuffer.java trunk/net/src/net/org/jnode/net/TransportLayer.java trunk/net/src/net/org/jnode/net/TransportLayerHeader.java trunk/net/src/net/org/jnode/net/arp/ARPCache.java trunk/net/src/net/org/jnode/net/arp/ARPCacheEntry.java trunk/net/src/net/org/jnode/net/arp/ARPConstants.java trunk/net/src/net/org/jnode/net/arp/ARPHeader.java trunk/net/src/net/org/jnode/net/arp/ARPNetworkLayer.java trunk/net/src/net/org/jnode/net/arp/ARPStatistics.java trunk/net/src/net/org/jnode/net/arp/RARPNetworkLayer.java trunk/net/src/net/org/jnode/net/ethernet/EthernetAddress.java trunk/net/src/net/org/jnode/net/ethernet/EthernetConstants.java trunk/net/src/net/org/jnode/net/ethernet/EthernetHeader.java trunk/net/src/net/org/jnode/net/ethernet/EthernetUtils.java trunk/net/src/net/org/jnode/net/ipv4/IPv4Address.java trunk/net/src/net/org/jnode/net/ipv4/IPv4AddressAndMask.java trunk/net/src/net/org/jnode/net/ipv4/IPv4Constants.java trunk/net/src/net/org/jnode/net/ipv4/IPv4ControlBlock.java trunk/net/src/net/org/jnode/net/ipv4/IPv4ControlBlockList.java trunk/net/src/net/org/jnode/net/ipv4/IPv4FragmentList.java trunk/net/src/net/org/jnode/net/ipv4/IPv4Header.java trunk/net/src/net/org/jnode/net/ipv4/IPv4IfAddress.java trunk/net/src/net/org/jnode/net/ipv4/IPv4Protocol.java trunk/net/src/net/org/jnode/net/ipv4/IPv4ProtocolAddressInfo.java trunk/net/src/net/org/jnode/net/ipv4/IPv4Route.java trunk/net/src/net/org/jnode/net/ipv4/IPv4RoutingTable.java trunk/net/src/net/org/jnode/net/ipv4/IPv4Service.java trunk/net/src/net/org/jnode/net/ipv4/IPv4Utils.java trunk/net/src/net/org/jnode/net/ipv4/bootp/AbstractBOOTPClient.java trunk/net/src/net/org/jnode/net/ipv4/bootp/BOOTPClient.java trunk/net/src/net/org/jnode/net/ipv4/bootp/BOOTPHeader.java trunk/net/src/net/org/jnode/net/ipv4/bootp/BOOTPMessage.java trunk/net/src/net/org/jnode/net/ipv4/bootp/BOOTPServer.java trunk/net/src/net/org/jnode/net/ipv4/config/IPv4ConfigurationService.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/ConfigurationProcessor.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/ConfigurationQueueEntry.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/ConfigurationServiceImpl.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/IPv4ConfigurationPlugin.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/Ifconfig.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/NetBootpDeviceConfig.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/NetConfigurationData.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/NetDeviceConfig.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/NetDeviceMonitor.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/NetDhcpConfig.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/NetStaticDeviceConfig.java trunk/net/src/net/org/jnode/net/ipv4/config/impl/Route.java trunk/net/src/net/org/jnode/net/ipv4/dhcp/AbstractDHCPClient.java trunk/net/src/net/org/jnode/net/ipv4/dhcp/DHCPClient.java trunk/net/src/net/org/jnode/net/ipv4/dhcp/DHCPMessage.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPAddressMaskHeader.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPConstants.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPEchoHeader.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPExHeader.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPHeader.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPListener.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPListenerCriteria.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPProtocol.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPStatistics.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPTimestampHeader.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPUnreachableHeader.java trunk/net/src/net/org/jnode/net/ipv4/icmp/ICMPUtils.java trunk/net/src/net/org/jnode/net/ipv4/layer/IPv4NetworkLayer.java trunk/net/src/net/org/jnode/net/ipv4/layer/IPv4Sender.java trunk/net/src/net/org/jnode/net/ipv4/layer/IPv4Statistics.java trunk/net/src/net/org/jnode/net/ipv4/raw/RAWProtocol.java trunk/net/src/net/org/jnode/net/ipv4/raw/RAWStatistics.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPConstants.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPControlBlock.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPControlBlockList.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPDataBuffer.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPHeader.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPInChannel.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPInSegment.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPInputStream.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPOutChannel.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPOutSegment.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPOutputStream.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPProtocol.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPSegment.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPSocketImpl.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPSocketImplFactory.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPStatistics.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPTimer.java trunk/net/src/net/org/jnode/net/ipv4/tcp/TCPUtils.java trunk/net/src/net/org/jnode/net/ipv4/tftp/TFTPClient.java trunk/net/src/net/org/jnode/net/ipv4/tftp/TFTPServer.java trunk/net/src/net/org/jnode/net/ipv4/udp/PlainUDPDatagramSocketImpl.java trunk/net/src/net/org/jnode/net/ipv4/udp/UDPConstants.java trunk/net/src/net/org/jnode/net/ipv4/udp/UDPControlBlock.java trunk/net/src/net/org/jnode/net/ipv4/udp/UDPDatagramSocketImpl.java trunk/net/src/net/org/jnode/net/ipv4/udp/UDPDatagramSocketImplFactory.java trunk/net/src/net/org/jnode/net/ipv4/udp/UDPHeader.java trunk/net/src/net/org/jnode/net/ipv4/udp/UDPProtocol.java trunk/net/src/net/org/jnode/net/ipv4/udp/UDPStatistics.java trunk/net/src/net/org/jnode/net/ipv4/util/ResolverImpl.java trunk/net/src/net/org/jnode/net/nfs/Protocol.java trunk/net/src/net/org/jnode/net/nfs/nfs2/CreateDirectoryResult.java trunk/net/src/net/org/jnode/net/nfs/nfs2/CreateFileResult.java trunk/net/src/net/org/jnode/net/nfs/nfs2/Entry.java trunk/net/src/net/org/jnode/net/nfs/nfs2/FileAttribute.java trunk/net/src/net/org/jnode/net/nfs/nfs2/FileSystemAttribute.java trunk/net/src/net/org/jnode/net/nfs/nfs2/ListDirectoryResult.java trunk/net/src/net/org/jnode/net/nfs/nfs2/LookupResult.java trunk/net/src/net/org/jnode/net/nfs/nfs2/NFS2Client.java trunk/net/src/net/org/jnode/net/nfs/nfs2/NFS2Exception.java trunk/net/src/net/org/jnode/net/nfs/nfs2/ReadFileResult.java trunk/net/src/net/org/jnode/net/nfs/nfs2/ResultCode.java trunk/net/src/net/org/jnode/net/nfs/nfs2/Time.java trunk/net/src/net/org/jnode/net/nfs/nfs2/mount/ExportEntry.java trunk/net/src/net/org/jnode/net/nfs/nfs2/mount/Mount1Client.java trunk/net/src/net/org/jnode/net/nfs/nfs2/mount/MountException.java trunk/net/src/net/org/jnode/net/nfs/nfs2/mount/MountResult.java trunk/net/src/net/org/jnode/net/nfs/nfs2/mount/RemoteMountFileSystem.java trunk/net/src/net/org/jnode/net/service/DefaultNetworkLayerManager.java trunk/net/src/net/org/jnode/net/service/NetAPIImpl.java trunk/net/src/net/org/jnode/net/service/NetDeviceImpl.java trunk/net/src/net/org/jnode/net/service/NetPlugin.java trunk/net/src/net/org/jnode/net/syntax/IPv4AddressArgument.java trunk/net/src/net/org/jnode/net/syntax/IPv4HostArgument.java trunk/net/src/net/org/jnode/net/util/AbstractDatagramSocketImpl.java trunk/net/src/net/org/jnode/net/util/NetUtils.java trunk/net/src/net/org/jnode/net/wireless/AuthenticationMode.java trunk/net/src/net/org/jnode/net/wireless/WirelessConstants.java trunk/net/src/net/org/jnode/net/wireless/p80211Header.java trunk/net/src/net/org/jnode/protocol/ftp/FTPURLConnection.java trunk/net/src/net/org/jnode/protocol/ftp/Handler.java trunk/net/src/net/org/jnode/protocol/nfs/Handler.java trunk/net/src/net/org/jnode/protocol/nfs/nfs2/NFS2InputStream.java trunk/net/src/net/org/jnode/protocol/nfs/nfs2/NFS2OutputStream.java trunk/net/src/net/org/jnode/protocol/nfs/nfs2/NFS2URLConnection.java trunk/net/src/net/org/jnode/protocol/tftp/Handler.java trunk/net/src/net/org/jnode/protocol/tftp/TFTPURLConnection.java trunk/net/src/test/org/jnode/test/net/ARPTest.java trunk/net/src/test/org/jnode/test/net/ChecksumTest.java trunk/net/src/test/org/jnode/test/net/CvsTest.java trunk/net/src/test/org/jnode/test/net/DnsTest.java trunk/net/src/test/org/jnode/test/net/NetTest.java trunk/net/src/test/org/jnode/test/net/TCPTest.java trunk/net/src/test/org/jnode/test/net/UDPSendTest.java trunk/net/src/test/org/jnode/test/net/UDPTest.java trunk/net/src/test/org/jnode/test/net/URLTest.java trunk/net/src/test/org/jnode/test/net/ethernet/EthernetAddressTest.java Modified: trunk/net/src/driver/org/jnode/driver/net/NetDeviceAPI.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/NetDeviceAPI.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/NetDeviceAPI.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/NetDeviceEvent.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/NetDeviceEvent.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/NetDeviceEvent.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/NetDeviceListener.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/NetDeviceListener.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/NetDeviceListener.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/NetworkException.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/NetworkException.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/NetworkException.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/WirelessNetDeviceAPI.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/WirelessNetDeviceAPI.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/WirelessNetDeviceAPI.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xConstants.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xConstants.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xConstants.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xCore.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xCore.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xCore.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xDriver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xDriver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xDriver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xFlags.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xFlags.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xFlags.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xRxRing.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xRxRing.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xRxRing.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xTxBuffer.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xTxBuffer.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/_3c90x/_3c90xTxBuffer.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xConstants.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xConstants.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xConstants.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xCore.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xCore.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xCore.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xDriver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xDriver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xDriver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xFlags.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xFlags.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/bcm570x/BCM570xFlags.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Buffer.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Buffer.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Buffer.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Constants.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Constants.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Constants.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Core.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Core.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Core.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Driver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Driver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Driver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Flags.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Flags.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Flags.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Registers.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Registers.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Registers.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100RxFD.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100RxFD.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100RxFD.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Stats.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Stats.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Stats.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100TxFD.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100TxFD.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100TxFD.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Utils.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Utils.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Utils.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/AbstractEthernetDriver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/AbstractEthernetDriver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/AbstractEthernetDriver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/BasicEthernetDriver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/BasicEthernetDriver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/BasicEthernetDriver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/Flags.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/Flags.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ethernet/spi/Flags.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/event/LinkStatusEvent.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/event/LinkStatusEvent.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/event/LinkStatusEvent.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/BufferManager.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/BufferManager.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/BufferManager.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/DWordIOAccess.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/DWordIOAccess.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/DWordIOAccess.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/Descriptor.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/Descriptor.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/Descriptor.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/DescriptorRing.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/DescriptorRing.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/DescriptorRing.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/IOAccess.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/IOAccess.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/IOAccess.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/InitializationBlock32Bit.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/InitializationBlock32Bit.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/InitializationBlock32Bit.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/LanceConstants.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/LanceConstants.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/LanceConstants.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/LanceCore.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/LanceCore.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/LanceCore.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/LanceDriver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/LanceDriver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/LanceDriver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/LanceFlags.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/LanceFlags.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/LanceFlags.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/RxDescriptor.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/RxDescriptor.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/RxDescriptor.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/RxDescriptorRing.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/RxDescriptorRing.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/RxDescriptorRing.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/TxDescriptor.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/TxDescriptor.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/TxDescriptor.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/TxDescriptorRing.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/TxDescriptorRing.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/TxDescriptorRing.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/lance/WordIOAccess.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/lance/WordIOAccess.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/lance/WordIOAccess.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackDevice.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackDevice.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackDevice.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackDriver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackDriver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackDriver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackFinder.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackFinder.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/loopback/LoopbackFinder.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Constants.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Constants.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Constants.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Core.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Core.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Core.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Driver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Driver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Driver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Flags.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Flags.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000Flags.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000PacketHeader.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000PacketHeader.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ne2000/Ne2000PacketHeader.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ne2000/pci/Ne2000PCI.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ne2000/pci/Ne2000PCI.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ne2000/pci/Ne2000PCI.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/ne2000/pci/Ne2000PCIDriver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/ne2000/pci/Ne2000PCIDriver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/ne2000/pci/Ne2000PCIDriver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2CommFrame.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2CommFrame.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2CommFrame.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2CommandResponse.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2CommandResponse.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2CommandResponse.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Constants.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Constants.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Constants.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Core.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Core.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Core.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Driver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Driver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Driver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Flags.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Flags.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Flags.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2IO.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2IO.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2IO.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2InfoFrame.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2InfoFrame.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2InfoFrame.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Record.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Record.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/prism2/Prism2Record.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Constants.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Constants.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Constants.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Core.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Core.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Core.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Driver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Driver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Driver.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Flags.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Flags.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139Flags.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139RxRing.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139RxRing.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139RxRing.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139TxBuffer.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139TxBuffer.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/rtl8139/RTL8139TxBuffer.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/spi/AbstractDeviceCore.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/spi/AbstractDeviceCore.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/net/spi/AbstractDeviceCore.java 2010-01-03 13:13:59 UTC (rev 5712) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/net/src/driver/org/jnode/driver/net/spi/AbstractNetDriver.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/spi/AbstractNetDriver.java 2010-01-03 12:56:09 UTC (rev 5711) +++ trunk/net/src/driver/org/jnode/driver/ne... [truncated message content] |
From: <ls...@us...> - 2010-01-03 12:56:24
|
Revision: 5711 http://jnode.svn.sourceforge.net/jnode/?rev=5711&view=rev Author: lsantha Date: 2010-01-03 12:56:09 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/gui/src/awt/org/jnode/awt/AWTMouseEventGenerator.java trunk/gui/src/awt/org/jnode/awt/AWTPlugin.java trunk/gui/src/awt/org/jnode/awt/GraphicsFactory.java trunk/gui/src/awt/org/jnode/awt/JNodeAwtContext.java trunk/gui/src/awt/org/jnode/awt/JNodeCursors.java trunk/gui/src/awt/org/jnode/awt/JNodeEventQueue.java trunk/gui/src/awt/org/jnode/awt/JNodeFrameBufferDevice.java trunk/gui/src/awt/org/jnode/awt/JNodeGenericPeer.java trunk/gui/src/awt/org/jnode/awt/JNodeGraphics.java trunk/gui/src/awt/org/jnode/awt/JNodeGraphics2D.java trunk/gui/src/awt/org/jnode/awt/JNodeGraphicsConfiguration.java trunk/gui/src/awt/org/jnode/awt/JNodeGraphicsEnvironment.java trunk/gui/src/awt/org/jnode/awt/JNodeRobotPeer.java trunk/gui/src/awt/org/jnode/awt/JNodeSurfaceGraphics2D.java trunk/gui/src/awt/org/jnode/awt/JNodeToolkit.java trunk/gui/src/awt/org/jnode/awt/KeyboardHandler.java trunk/gui/src/awt/org/jnode/awt/MouseHandler.java trunk/gui/src/awt/org/jnode/awt/StartAwt.java trunk/gui/src/awt/org/jnode/awt/VMImageAPIImpl.java trunk/gui/src/awt/org/jnode/awt/font/DefaultTextPipe.java trunk/gui/src/awt/org/jnode/awt/font/FontManager.java trunk/gui/src/awt/org/jnode/awt/font/FontProvider.java trunk/gui/src/awt/org/jnode/awt/font/JNodeFontPeer.java trunk/gui/src/awt/org/jnode/awt/font/TGlyphVector.java trunk/gui/src/awt/org/jnode/awt/font/TextRenderer.java trunk/gui/src/awt/org/jnode/awt/font/def/DefaultFontManager.java trunk/gui/src/awt/org/jnode/awt/font/def/FontPlugin.java trunk/gui/src/awt/org/jnode/awt/font/renderer/FontScaleOp.java trunk/gui/src/awt/org/jnode/awt/font/renderer/GlyphRenderer.java trunk/gui/src/awt/org/jnode/awt/font/renderer/RenderCache.java trunk/gui/src/awt/org/jnode/awt/font/renderer/RenderContext.java trunk/gui/src/awt/org/jnode/awt/font/renderer/SummedAreaTable.java trunk/gui/src/awt/org/jnode/awt/font/spi/AbstractFontProvider.java trunk/gui/src/awt/org/jnode/awt/font/spi/AbstractTextRenderer.java trunk/gui/src/awt/org/jnode/awt/font/spi/FontData.java trunk/gui/src/awt/org/jnode/awt/font/spi/Glyph.java trunk/gui/src/awt/org/jnode/awt/font/spi/ShapedGlyph.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFileInput.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFont.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontData.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontDataFile.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontMetrics.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontPeer.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFInput.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFMemoryInput.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFOpenType.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFPlugin.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFSimpleTextRenderer.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFTextRenderer.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFontProvider.java trunk/gui/src/awt/org/jnode/awt/font/truetype/TableClass.java trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/CompositeGlyph.java trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/SimpleGlyph.java trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/TTFGlyph.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/CMapTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/GlyphTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HeadTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HorizontalHeaderTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HorizontalMetricsTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/LocationsTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/MaxPTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/NameTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/OS2Table.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/PostTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/TTFTable.java trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/VersionTable.java trunk/gui/src/awt/org/jnode/awt/geom/PolyLine.java trunk/gui/src/awt/org/jnode/awt/image/AbstractImageConsumer.java trunk/gui/src/awt/org/jnode/awt/image/AbstractMemoryImageConsumer.java trunk/gui/src/awt/org/jnode/awt/image/BufferedImageGraphics2D.java trunk/gui/src/awt/org/jnode/awt/image/BufferedImageSurface.java trunk/gui/src/awt/org/jnode/awt/image/ImageConsumerByte.java trunk/gui/src/awt/org/jnode/awt/image/ImageConsumerInt.java trunk/gui/src/awt/org/jnode/awt/image/JNodeBufferedImage.java trunk/gui/src/awt/org/jnode/awt/image/JNodeBufferedImageGraphics.java trunk/gui/src/awt/org/jnode/awt/image/JNodeBufferedImageGraphics2D.java trunk/gui/src/awt/org/jnode/awt/image/JNodeImage.java trunk/gui/src/awt/org/jnode/awt/image/JNodeImageGraphics.java trunk/gui/src/awt/org/jnode/awt/java2d/loops/JNodeMaskBlit.java trunk/gui/src/awt/org/jnode/awt/swingpeers/DesktopFrame.java trunk/gui/src/awt/org/jnode/awt/swingpeers/DesktopFramePeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/ISwingContainerPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/ISwingPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingBaseMenuItemPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingBaseMenuPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingBaseWindow.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingBaseWindowPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingButtonPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingCanvasPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingCheckboxMenuItemPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingCheckboxPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingChoicePeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingComponentPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingContainerLayout.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingContainerPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingDialogPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingFramePeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingJFramePeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingLabelPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingLightweightContainerPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingLightweightPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingListPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingMenuBarPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingMenuComponentPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingMenuItemPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingMenuPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingPanelPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingPeersPlugin.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingPopupMenuPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingRepaintManager.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingScrollPanePeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingScrollbarPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingTextAreaPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingTextComponentPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingTextFieldPeer.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingToolkit.java trunk/gui/src/awt/org/jnode/awt/swingpeers/SwingWindowPeer.java trunk/gui/src/awt/org/jnode/awt/util/AbstractBitmapGraphics.java trunk/gui/src/awt/org/jnode/awt/util/AbstractGraphics.java trunk/gui/src/awt/org/jnode/awt/util/AbstractSurfaceGraphics.java trunk/gui/src/awt/org/jnode/awt/util/AbstractSurfaceGraphics2D.java trunk/gui/src/awt/org/jnode/awt/util/AwtUtils.java trunk/gui/src/awt/org/jnode/awt/util/BasicGraphics.java trunk/gui/src/awt/org/jnode/awt/util/BasicSurfaceGraphics.java trunk/gui/src/awt/org/jnode/awt/util/BitmapGraphics.java trunk/gui/src/awt/org/jnode/awt/util/BitmapGraphics16bpp.java trunk/gui/src/awt/org/jnode/awt/util/BitmapGraphics24bpp.java trunk/gui/src/awt/org/jnode/awt/util/BitmapGraphics32bpp.java trunk/gui/src/awt/org/jnode/awt/util/BitmapGraphics8bpp.java trunk/gui/src/awt/org/jnode/awt/util/SurfaceGraphics2D.java trunk/gui/src/desktop/org/jnode/desktop/ApplicationBar.java trunk/gui/src/desktop/org/jnode/desktop/ControlBar.java trunk/gui/src/desktop/org/jnode/desktop/Desktop.java trunk/gui/src/desktop/org/jnode/desktop/DesktopPlugin.java trunk/gui/src/desktop/org/jnode/desktop/WindowBar.java trunk/gui/src/desktop/org/jnode/desktop/classic/Desktop.java trunk/gui/src/desktop/org/jnode/desktop/classic/TaskBar.java trunk/gui/src/desktop/org/jnode/desktop/classic/WindowBar.java trunk/gui/src/driver/org/jnode/driver/bus/i2c/I2cAPI.java trunk/gui/src/driver/org/jnode/driver/bus/i2c/I2cConstants.java trunk/gui/src/driver/org/jnode/driver/bus/i2c/I2cException.java trunk/gui/src/driver/org/jnode/driver/bus/i2c/I2cLineState.java trunk/gui/src/driver/org/jnode/driver/bus/i2c/I2cProtocol.java trunk/gui/src/driver/org/jnode/driver/bus/i2c/I2cTimeoutException.java trunk/gui/src/driver/org/jnode/driver/console/swing/SwingTextScreenConsoleManager.java trunk/gui/src/driver/org/jnode/driver/input/usb/USBHidConstants.java trunk/gui/src/driver/org/jnode/driver/input/usb/USBInputDeviceToDriverMapper.java trunk/gui/src/driver/org/jnode/driver/input/usb/USBKeyboardDriver.java trunk/gui/src/driver/org/jnode/driver/input/usb/USBMouseDriver.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2Bus.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2ByteChannel.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2Constants.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2Device.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2Driver.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2Finder.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2KeyboardDriver.java trunk/gui/src/driver/org/jnode/driver/ps2/PS2PointerDriver.java trunk/gui/src/driver/org/jnode/driver/sound/command/BeepCommand.java trunk/gui/src/driver/org/jnode/driver/sound/command/PlayCommand.java trunk/gui/src/driver/org/jnode/driver/sound/speaker/Note.java trunk/gui/src/driver/org/jnode/driver/sound/speaker/SpeakerAPI.java trunk/gui/src/driver/org/jnode/driver/sound/speaker/SpeakerUtils.java trunk/gui/src/driver/org/jnode/driver/sound/speaker/pc/PCSpeakerDevice.java trunk/gui/src/driver/org/jnode/driver/sound/speaker/pc/PCSpeakerDriver.java trunk/gui/src/driver/org/jnode/driver/sound/speaker/pc/PCSpeakerFinder.java trunk/gui/src/driver/org/jnode/driver/textscreen/fb/Background.java trunk/gui/src/driver/org/jnode/driver/textscreen/fb/DefaultBackground.java trunk/gui/src/driver/org/jnode/driver/textscreen/fb/FBConsole.java trunk/gui/src/driver/org/jnode/driver/textscreen/fb/FbTextScreen.java trunk/gui/src/driver/org/jnode/driver/textscreen/fb/FbTextScreenManager.java trunk/gui/src/driver/org/jnode/driver/textscreen/fb/FbTextScreenPlugin.java trunk/gui/src/driver/org/jnode/driver/textscreen/fb/GradientBackground.java trunk/gui/src/driver/org/jnode/driver/textscreen/swing/SwingPcTextScreen.java trunk/gui/src/driver/org/jnode/driver/textscreen/swing/SwingTextScreenManager.java trunk/gui/src/driver/org/jnode/driver/video/AbstractFrameBufferDriver.java trunk/gui/src/driver/org/jnode/driver/video/AlreadyOpenException.java trunk/gui/src/driver/org/jnode/driver/video/FrameBufferAPI.java trunk/gui/src/driver/org/jnode/driver/video/FrameBufferAPIOwner.java trunk/gui/src/driver/org/jnode/driver/video/FrameBufferConfiguration.java trunk/gui/src/driver/org/jnode/driver/video/FrameBufferException.java trunk/gui/src/driver/org/jnode/driver/video/HardwareCursor.java trunk/gui/src/driver/org/jnode/driver/video/HardwareCursorAPI.java trunk/gui/src/driver/org/jnode/driver/video/HardwareCursorImage.java trunk/gui/src/driver/org/jnode/driver/video/NotOpenException.java trunk/gui/src/driver/org/jnode/driver/video/Surface.java trunk/gui/src/driver/org/jnode/driver/video/UnknownConfigurationException.java trunk/gui/src/driver/org/jnode/driver/video/ati/mach64/Mach64Configuration.java trunk/gui/src/driver/org/jnode/driver/video/ati/mach64/Mach64Constants.java trunk/gui/src/driver/org/jnode/driver/video/ati/mach64/Mach64Core.java trunk/gui/src/driver/org/jnode/driver/video/ati/mach64/Mach64Driver.java trunk/gui/src/driver/org/jnode/driver/video/ati/mach64/Mach64Surface.java trunk/gui/src/driver/org/jnode/driver/video/ati/mach64/Mach64VgaIO.java trunk/gui/src/driver/org/jnode/driver/video/ati/mach64/Mach64VgaState.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/CommonRegs.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/CrtcRegs.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/FBInfo.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/FPIBlock.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/FPITimingBlock.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/FpRegs.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/PLLInfo.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/PllRegs.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/RadeonAcceleration.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/RadeonConfiguration.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/RadeonConstants.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/RadeonCore.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/RadeonDriver.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/RadeonHardwareCursor.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/RadeonSurface.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/RadeonVgaIO.java trunk/gui/src/driver/org/jnode/driver/video/ati/radeon/RadeonVgaState.java trunk/gui/src/driver/org/jnode/driver/video/cirrus/CirrusConstants.java trunk/gui/src/driver/org/jnode/driver/video/cirrus/CirrusCore.java trunk/gui/src/driver/org/jnode/driver/video/cirrus/CirrusDriver.java trunk/gui/src/driver/org/jnode/driver/video/cirrus/CirrusMMIO.java trunk/gui/src/driver/org/jnode/driver/video/cirrus/CirrusVGAState.java trunk/gui/src/driver/org/jnode/driver/video/cursor/SoftwareCursor.java trunk/gui/src/driver/org/jnode/driver/video/ddc/DDC1Exception.java trunk/gui/src/driver/org/jnode/driver/video/ddc/DDC1NoSignalException.java trunk/gui/src/driver/org/jnode/driver/video/ddc/DDC1ParseException.java trunk/gui/src/driver/org/jnode/driver/video/ddc/DDC1Reader.java trunk/gui/src/driver/org/jnode/driver/video/ddc/DisplayDataChannelAPI.java trunk/gui/src/driver/org/jnode/driver/video/ddc/EDID.java trunk/gui/src/driver/org/jnode/driver/video/ddc/EDIDConstants.java trunk/gui/src/driver/org/jnode/driver/video/nvidia/NVidiaAcceleration.java trunk/gui/src/driver/org/jnode/driver/video/nvidia/NVidiaConfiguration.java trunk/gui/src/driver/org/jnode/driver/video/nvidia/NVidiaConstants.java trunk/gui/src/driver/org/jnode/driver/video/nvidia/NVidiaCore.java trunk/gui/src/driver/org/jnode/driver/video/nvidia/NVidiaDriver.java trunk/gui/src/driver/org/jnode/driver/video/nvidia/NVidiaHardwareCursor.java trunk/gui/src/driver/org/jnode/driver/video/nvidia/NVidiaVgaIO.java trunk/gui/src/driver/org/jnode/driver/video/nvidia/NVidiaVgaState.java trunk/gui/src/driver/org/jnode/driver/video/spi/DpmsState.java trunk/gui/src/driver/org/jnode/driver/video/util/AbstractSurface.java trunk/gui/src/driver/org/jnode/driver/video/util/Curves.java trunk/gui/src/driver/org/jnode/driver/video/util/VesaGTF.java trunk/gui/src/driver/org/jnode/driver/video/vesa/ModeInfoBlock.java trunk/gui/src/driver/org/jnode/driver/video/vesa/MultibootInfos.java trunk/gui/src/driver/org/jnode/driver/video/vesa/PMInfoBlock.java trunk/gui/src/driver/org/jnode/driver/video/vesa/VESACommand.java trunk/gui/src/driver/org/jnode/driver/video/vesa/VESAConfiguration.java trunk/gui/src/driver/org/jnode/driver/video/vesa/VESACore.java trunk/gui/src/driver/org/jnode/driver/video/vesa/VESADeviceToDriverMapper.java trunk/gui/src/driver/org/jnode/driver/video/vesa/VESADriver.java trunk/gui/src/driver/org/jnode/driver/video/vesa/VbeInfoBlock.java trunk/gui/src/driver/org/jnode/driver/video/vesa/VesaUtils.java trunk/gui/src/driver/org/jnode/driver/video/vga/StandardVGA.java trunk/gui/src/driver/org/jnode/driver/video/vga/StandardVGAIO.java trunk/gui/src/driver/org/jnode/driver/video/vga/VGABitmapGraphics.java trunk/gui/src/driver/org/jnode/driver/video/vga/VGAConfiguration.java trunk/gui/src/driver/org/jnode/driver/video/vga/VGADriver.java trunk/gui/src/driver/org/jnode/driver/video/vga/VGAFinder.java trunk/gui/src/driver/org/jnode/driver/video/vga/VGASurface.java trunk/gui/src/driver/org/jnode/driver/video/vgahw/DisplayMode.java trunk/gui/src/driver/org/jnode/driver/video/vgahw/VgaConstants.java trunk/gui/src/driver/org/jnode/driver/video/vgahw/VgaIO.java trunk/gui/src/driver/org/jnode/driver/video/vgahw/VgaState.java trunk/gui/src/driver/org/jnode/driver/video/vgahw/VgaUtils.java trunk/gui/src/driver/org/jnode/driver/video/vmware/VMWareConfiguration.java trunk/gui/src/driver/org/jnode/driver/video/vmware/VMWareConstants.java trunk/gui/src/driver/org/jnode/driver/video/vmware/VMWareCore.java trunk/gui/src/driver/org/jnode/driver/video/vmware/VMWareDriver.java trunk/gui/src/test/org/jnode/test/gui/AWTDemo.java trunk/gui/src/test/org/jnode/test/gui/AWTFrameTest.java trunk/gui/src/test/org/jnode/test/gui/AWTMenuBuilderTest.java trunk/gui/src/test/org/jnode/test/gui/AWTMenuTest.java trunk/gui/src/test/org/jnode/test/gui/AWTTest.java trunk/gui/src/test/org/jnode/test/gui/BufferImageTest.java trunk/gui/src/test/org/jnode/test/gui/ColorModelTest.java trunk/gui/src/test/org/jnode/test/gui/ConsoleTest.java trunk/gui/src/test/org/jnode/test/gui/CurvesTest.java trunk/gui/src/test/org/jnode/test/gui/DDC1Test.java trunk/gui/src/test/org/jnode/test/gui/DialogTest.java trunk/gui/src/test/org/jnode/test/gui/Editor.java trunk/gui/src/test/org/jnode/test/gui/Emu.java trunk/gui/src/test/org/jnode/test/gui/FBConsole.java trunk/gui/src/test/org/jnode/test/gui/FBTest.java trunk/gui/src/test/org/jnode/test/gui/FontManagerTest.java trunk/gui/src/test/org/jnode/test/gui/GeneralPathTest.java trunk/gui/src/test/org/jnode/test/gui/GlyphTest.java trunk/gui/src/test/org/jnode/test/gui/Graphics2DSurface.java trunk/gui/src/test/org/jnode/test/gui/GraphicsTest.java trunk/gui/src/test/org/jnode/test/gui/HTMLTest.java trunk/gui/src/test/org/jnode/test/gui/ImageIOTest.java trunk/gui/src/test/org/jnode/test/gui/ImageTest.java trunk/gui/src/test/org/jnode/test/gui/Imageutil.java trunk/gui/src/test/org/jnode/test/gui/IndexColorModelTest.java trunk/gui/src/test/org/jnode/test/gui/JDPTest.java trunk/gui/src/test/org/jnode/test/gui/JInternalFrameTest.java trunk/gui/src/test/org/jnode/test/gui/JTableTest.java trunk/gui/src/test/org/jnode/test/gui/JTreeTest.java trunk/gui/src/test/org/jnode/test/gui/MouseEventTest.java trunk/gui/src/test/org/jnode/test/gui/PolyLineTest.java trunk/gui/src/test/org/jnode/test/gui/QuadCurveTest.java trunk/gui/src/test/org/jnode/test/gui/RobotTest.java trunk/gui/src/test/org/jnode/test/gui/SwingMenuTest.java trunk/gui/src/test/org/jnode/test/gui/SwingTest.java trunk/gui/src/test/org/jnode/test/gui/TTFFileTest.java trunk/gui/src/test/org/jnode/test/gui/TextFieldTest.java Modified: trunk/gui/src/awt/org/jnode/awt/AWTMouseEventGenerator.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/AWTMouseEventGenerator.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/AWTMouseEventGenerator.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/AWTPlugin.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/AWTPlugin.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/AWTPlugin.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/GraphicsFactory.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/GraphicsFactory.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/GraphicsFactory.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeAwtContext.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeAwtContext.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeAwtContext.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeCursors.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeCursors.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeCursors.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeEventQueue.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeEventQueue.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeEventQueue.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeFrameBufferDevice.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeFrameBufferDevice.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeFrameBufferDevice.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeGenericPeer.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeGenericPeer.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeGenericPeer.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeGraphics.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeGraphics.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeGraphics.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeGraphics2D.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeGraphics2D.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeGraphics2D.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeGraphicsConfiguration.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeGraphicsConfiguration.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeGraphicsConfiguration.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeGraphicsEnvironment.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeGraphicsEnvironment.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeGraphicsEnvironment.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeRobotPeer.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeRobotPeer.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeRobotPeer.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeSurfaceGraphics2D.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeSurfaceGraphics2D.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeSurfaceGraphics2D.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/JNodeToolkit.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/JNodeToolkit.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/JNodeToolkit.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/KeyboardHandler.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/KeyboardHandler.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/KeyboardHandler.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/MouseHandler.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/MouseHandler.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/MouseHandler.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/StartAwt.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/StartAwt.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/StartAwt.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/VMImageAPIImpl.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/VMImageAPIImpl.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/VMImageAPIImpl.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/DefaultTextPipe.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/DefaultTextPipe.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/DefaultTextPipe.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/FontManager.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/FontManager.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/FontManager.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/FontProvider.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/FontProvider.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/FontProvider.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/JNodeFontPeer.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/JNodeFontPeer.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/JNodeFontPeer.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/TGlyphVector.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/TGlyphVector.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/TGlyphVector.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/TextRenderer.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/TextRenderer.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/TextRenderer.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/def/DefaultFontManager.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/def/DefaultFontManager.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/def/DefaultFontManager.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/def/FontPlugin.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/def/FontPlugin.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/def/FontPlugin.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/renderer/FontScaleOp.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/renderer/FontScaleOp.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/renderer/FontScaleOp.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/renderer/GlyphRenderer.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/renderer/GlyphRenderer.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/renderer/GlyphRenderer.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/renderer/RenderCache.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/renderer/RenderCache.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/renderer/RenderCache.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/renderer/RenderContext.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/renderer/RenderContext.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/renderer/RenderContext.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/renderer/SummedAreaTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/renderer/SummedAreaTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/renderer/SummedAreaTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/spi/AbstractFontProvider.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/spi/AbstractFontProvider.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/spi/AbstractFontProvider.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/spi/AbstractTextRenderer.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/spi/AbstractTextRenderer.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/spi/AbstractTextRenderer.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/spi/FontData.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/spi/FontData.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/spi/FontData.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/spi/Glyph.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/spi/Glyph.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/spi/Glyph.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/spi/ShapedGlyph.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/spi/ShapedGlyph.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/spi/ShapedGlyph.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFileInput.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFileInput.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFileInput.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFont.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFont.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFont.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontData.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontData.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontData.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontDataFile.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontDataFile.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontDataFile.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontMetrics.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontMetrics.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontMetrics.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontPeer.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontPeer.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFFontPeer.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFInput.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFInput.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFInput.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFMemoryInput.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFMemoryInput.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFMemoryInput.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFOpenType.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFOpenType.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFOpenType.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFPlugin.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFPlugin.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFPlugin.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFSimpleTextRenderer.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFSimpleTextRenderer.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFSimpleTextRenderer.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFTextRenderer.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFTextRenderer.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFTextRenderer.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFontProvider.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFontProvider.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TTFontProvider.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/TableClass.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/TableClass.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/TableClass.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/CompositeGlyph.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/CompositeGlyph.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/CompositeGlyph.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/SimpleGlyph.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/SimpleGlyph.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/SimpleGlyph.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/TTFGlyph.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/TTFGlyph.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/glyph/TTFGlyph.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/CMapTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/CMapTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/CMapTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/GlyphTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/GlyphTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/GlyphTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HeadTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HeadTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HeadTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HorizontalHeaderTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HorizontalHeaderTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HorizontalHeaderTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HorizontalMetricsTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HorizontalMetricsTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/HorizontalMetricsTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/LocationsTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/LocationsTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/LocationsTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/MaxPTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/MaxPTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/MaxPTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/NameTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/NameTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/NameTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/OS2Table.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/OS2Table.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/OS2Table.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/PostTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/PostTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/PostTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/TTFTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/TTFTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/TTFTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/VersionTable.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/VersionTable.java 2010-01-03 12:02:53 UTC (rev 5710) +++ trunk/gui/src/awt/org/jnode/awt/font/truetype/tables/VersionTable.java 2010-01-03 12:56:09 UTC (rev 5711) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/gui/src/awt/org/jnode/awt/geom/PolyLine.java =================================================================== --- trunk/gui/src/awt/org/jnode/awt/geom/PolyLine.java 2010-01-... [truncated message content] |
From: <ls...@us...> - 2010-01-03 12:03:07
|
Revision: 5710 http://jnode.svn.sourceforge.net/jnode/?rev=5710&view=rev Author: lsantha Date: 2010-01-03 12:02:53 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/fs/src/driver/org/jnode/driver/block/BlockAlignmentSupport.java trunk/fs/src/driver/org/jnode/driver/block/BlockDeviceAPI.java trunk/fs/src/driver/org/jnode/driver/block/BlockDeviceAPIHelper.java trunk/fs/src/driver/org/jnode/driver/block/ByteArrayDevice.java trunk/fs/src/driver/org/jnode/driver/block/CHS.java trunk/fs/src/driver/org/jnode/driver/block/FSBlockAlignmentSupport.java trunk/fs/src/driver/org/jnode/driver/block/FSBlockDeviceAPI.java trunk/fs/src/driver/org/jnode/driver/block/FileDevice.java trunk/fs/src/driver/org/jnode/driver/block/Geometry.java trunk/fs/src/driver/org/jnode/driver/block/GeometryException.java trunk/fs/src/driver/org/jnode/driver/block/JarFileDevice.java trunk/fs/src/driver/org/jnode/driver/block/MappedBlockDeviceSupport.java trunk/fs/src/driver/org/jnode/driver/block/MappedFSBlockDeviceSupport.java trunk/fs/src/driver/org/jnode/driver/block/PartitionableBlockAlignmentSupport.java trunk/fs/src/driver/org/jnode/driver/block/PartitionableBlockDeviceAPI.java trunk/fs/src/driver/org/jnode/driver/block/floppy/DefaultFDC.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FDC.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyCommand.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyConstants.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerBus.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerDevice.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerDriver.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerFinder.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDevice.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDeviceToDriverMapper.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriveParameters.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriveParametersCommand.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriver.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyException.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyIdCommand.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyParameters.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyReadSectorCommand.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppySeekCommand.java trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyWriteSectorCommand.java trunk/fs/src/driver/org/jnode/driver/block/floppy/support/DefaultFloppyDeviceFactory.java trunk/fs/src/driver/org/jnode/driver/block/floppy/support/FloppyDeviceFactory.java trunk/fs/src/driver/org/jnode/driver/block/floppy/support/FloppyDriverUtils.java trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDeviceToDriverMapper.java trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDriver.java trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskPartitionDevice.java trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskPartitionDriver.java trunk/fs/src/driver/org/jnode/driver/block/ramdisk/RamDiskDevice.java trunk/fs/src/driver/org/jnode/driver/block/ramdisk/RamDiskDriver.java trunk/fs/src/driver/org/jnode/driver/block/ramdisk/command/RamDiskCommand.java trunk/fs/src/driver/org/jnode/driver/block/scsi/cdrom/CDROMDeviceToDriverMapper.java trunk/fs/src/driver/org/jnode/driver/block/scsi/cdrom/SCSICDROMDriver.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/CBW.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/CSW.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/ITransport.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/USBStorageBulkTransport.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/USBStorageConstants.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/USBStorageDeviceData.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/USBStorageDeviceToDriverMapper.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/USBStorageSCSIHostDriver.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/scsi/USBStorageSCSIDeviceToDriverMapper.java trunk/fs/src/driver/org/jnode/driver/block/usb/storage/scsi/USBStorageSCSIDriver.java trunk/fs/src/driver/org/jnode/driver/bus/ide/DefaultIDEControllerDriver.java trunk/fs/src/driver/org/jnode/driver/bus/ide/DefaultIDEDeviceFactory.java trunk/fs/src/driver/org/jnode/driver/bus/ide/DefaultIDEIO.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEBus.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDECommand.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEConstants.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEControllerAPI.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEDevice.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEDeviceAPI.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEDeviceFactory.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEDriveDescriptor.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEDriverUtils.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEException.java trunk/fs/src/driver/org/jnode/driver/bus/ide/IDEIO.java trunk/fs/src/driver/org/jnode/driver/bus/ide/atapi/ATAPIDeviceToDriverMapper.java trunk/fs/src/driver/org/jnode/driver/bus/ide/atapi/ATAPIDriver.java trunk/fs/src/driver/org/jnode/driver/bus/ide/command/IDEIdCommand.java trunk/fs/src/driver/org/jnode/driver/bus/ide/command/IDEPacketCommand.java trunk/fs/src/driver/org/jnode/driver/bus/ide/command/IDERWSectorsCommand.java trunk/fs/src/driver/org/jnode/driver/bus/ide/command/IDEReadSectorsCommand.java trunk/fs/src/driver/org/jnode/driver/bus/ide/command/IDEWriteSectorsCommand.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/CDB.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/SCSIBuffer.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/SCSIConstants.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/SCSIDevice.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/SCSIDeviceAPI.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/SCSIException.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/SCSIHostControllerAPI.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/mmc/CDBGetConfiguration.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/mmc/CDBMediaRemoval.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/mmc/CDBRead10.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/mmc/CDBReadCapacity.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/mmc/CDBReadTOC.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/mmc/CDBStartStopUnit.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/mmc/CapacityData.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/mmc/MMCUtils.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/spc/CDBInquiry.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/spc/CDBReportLuns.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/spc/CDBRequestSense.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/spc/CDBTestUnitReady.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/spc/InquiryData.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/spc/SenseData.java trunk/fs/src/driver/org/jnode/driver/bus/scsi/cdb/spc/SenseKey.java trunk/fs/src/fs/org/jnode/fs/BlockDeviceFileSystemType.java trunk/fs/src/fs/org/jnode/fs/FSAccessRights.java trunk/fs/src/fs/org/jnode/fs/FSDirectory.java trunk/fs/src/fs/org/jnode/fs/FSEntry.java trunk/fs/src/fs/org/jnode/fs/FSEntryTableIgnoreCase.java trunk/fs/src/fs/org/jnode/fs/FSFile.java trunk/fs/src/fs/org/jnode/fs/FSObject.java trunk/fs/src/fs/org/jnode/fs/FileSystem.java trunk/fs/src/fs/org/jnode/fs/FileSystemException.java trunk/fs/src/fs/org/jnode/fs/FileSystemFullException.java trunk/fs/src/fs/org/jnode/fs/FileSystemType.java trunk/fs/src/fs/org/jnode/fs/Formatter.java trunk/fs/src/fs/org/jnode/fs/ReadOnlyFileSystemException.java trunk/fs/src/fs/org/jnode/fs/command/AbstractFormatCommand.java trunk/fs/src/fs/org/jnode/fs/command/EjectCommand.java trunk/fs/src/fs/org/jnode/fs/command/MountCommand.java trunk/fs/src/fs/org/jnode/fs/ext2/BlockBitmap.java trunk/fs/src/fs/org/jnode/fs/ext2/BlockReservation.java trunk/fs/src/fs/org/jnode/fs/ext2/BlockSize.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2Constants.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2Directory.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2DirectoryRecord.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2Entry.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2File.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2FileSystem.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2FileSystemFormatter.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2FileSystemType.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2Print.java trunk/fs/src/fs/org/jnode/fs/ext2/Ext2Utils.java trunk/fs/src/fs/org/jnode/fs/ext2/FSBitmap.java trunk/fs/src/fs/org/jnode/fs/ext2/GroupDescriptor.java trunk/fs/src/fs/org/jnode/fs/ext2/INode.java trunk/fs/src/fs/org/jnode/fs/ext2/INodeBitmap.java trunk/fs/src/fs/org/jnode/fs/ext2/INodeDescriptor.java trunk/fs/src/fs/org/jnode/fs/ext2/INodeReservation.java trunk/fs/src/fs/org/jnode/fs/ext2/INodeTable.java trunk/fs/src/fs/org/jnode/fs/ext2/Superblock.java trunk/fs/src/fs/org/jnode/fs/ext2/cache/Block.java trunk/fs/src/fs/org/jnode/fs/ext2/cache/BlockCache.java trunk/fs/src/fs/org/jnode/fs/ext2/cache/CacheEvent.java trunk/fs/src/fs/org/jnode/fs/ext2/cache/CacheListener.java trunk/fs/src/fs/org/jnode/fs/ext2/cache/INodeCache.java trunk/fs/src/fs/org/jnode/fs/ext2/command/FormatExt2Command.java trunk/fs/src/fs/org/jnode/fs/ext2/exception/UnallocatedBlockException.java trunk/fs/src/fs/org/jnode/fs/ext2/test/command/CopyTest.java trunk/fs/src/fs/org/jnode/fs/ext2/test/command/FillTest.java trunk/fs/src/fs/org/jnode/fs/ext2/test/command/WriteTest.java trunk/fs/src/fs/org/jnode/fs/fat/AbstractDirectory.java trunk/fs/src/fs/org/jnode/fs/fat/BootSector.java trunk/fs/src/fs/org/jnode/fs/fat/Fat.java trunk/fs/src/fs/org/jnode/fs/fat/FatBasicDirEntry.java trunk/fs/src/fs/org/jnode/fs/fat/FatConstants.java trunk/fs/src/fs/org/jnode/fs/fat/FatDirEntry.java trunk/fs/src/fs/org/jnode/fs/fat/FatDirectory.java trunk/fs/src/fs/org/jnode/fs/fat/FatFile.java trunk/fs/src/fs/org/jnode/fs/fat/FatFileSystem.java trunk/fs/src/fs/org/jnode/fs/fat/FatFileSystemFormatter.java trunk/fs/src/fs/org/jnode/fs/fat/FatFileSystemType.java trunk/fs/src/fs/org/jnode/fs/fat/FatFormatter.java trunk/fs/src/fs/org/jnode/fs/fat/FatLfnDirEntry.java trunk/fs/src/fs/org/jnode/fs/fat/FatLfnDirectory.java trunk/fs/src/fs/org/jnode/fs/fat/FatObject.java trunk/fs/src/fs/org/jnode/fs/fat/FatRootEntry.java trunk/fs/src/fs/org/jnode/fs/fat/FatType.java trunk/fs/src/fs/org/jnode/fs/fat/FatUtils.java trunk/fs/src/fs/org/jnode/fs/fat/GrubBootSector.java trunk/fs/src/fs/org/jnode/fs/fat/GrubFatFormatter.java trunk/fs/src/fs/org/jnode/fs/fat/LfnEntry.java trunk/fs/src/fs/org/jnode/fs/fat/command/FormatFatCommand.java trunk/fs/src/fs/org/jnode/fs/fat/test/FatTest.java trunk/fs/src/fs/org/jnode/fs/ftpfs/FTPFSDevice.java trunk/fs/src/fs/org/jnode/fs/ftpfs/FTPFSDirectory.java trunk/fs/src/fs/org/jnode/fs/ftpfs/FTPFSDriver.java trunk/fs/src/fs/org/jnode/fs/ftpfs/FTPFSEntry.java trunk/fs/src/fs/org/jnode/fs/ftpfs/FTPFSFile.java trunk/fs/src/fs/org/jnode/fs/ftpfs/FTPFileSystem.java trunk/fs/src/fs/org/jnode/fs/ftpfs/FTPFileSystemType.java trunk/fs/src/fs/org/jnode/fs/ftpfs/command/FTPMountCommand.java trunk/fs/src/fs/org/jnode/fs/hfsplus/ExtendedFileInfo.java trunk/fs/src/fs/org/jnode/fs/hfsplus/FileInfo.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HFSPlusParams.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusBSDInfo.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusDirectory.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusEntry.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusFile.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusFileSystem.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusFileSystemFormatter.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusFileSystemType.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusForkData.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusObject.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsPlusSystemChecker.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsUnicodeString.java trunk/fs/src/fs/org/jnode/fs/hfsplus/HfsUtils.java trunk/fs/src/fs/org/jnode/fs/hfsplus/JournalInfoBlock.java trunk/fs/src/fs/org/jnode/fs/hfsplus/Superblock.java trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/Catalog.java trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/CatalogFile.java trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/CatalogFolder.java trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/CatalogKey.java trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/CatalogNode.java trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/CatalogNodeId.java trunk/fs/src/fs/org/jnode/fs/hfsplus/catalog/CatalogThread.java trunk/fs/src/fs/org/jnode/fs/hfsplus/command/FormatHfsPlusCommand.java trunk/fs/src/fs/org/jnode/fs/hfsplus/extent/Extent.java trunk/fs/src/fs/org/jnode/fs/hfsplus/extent/ExtentDescriptor.java trunk/fs/src/fs/org/jnode/fs/hfsplus/extent/ExtentKey.java trunk/fs/src/fs/org/jnode/fs/hfsplus/extent/ExtentNode.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/AbstractKey.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/AbstractNode.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/AbstractNodeRecord.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/BTHeaderRecord.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/IndexRecord.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/Key.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/LeafRecord.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/Node.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/NodeDescriptor.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/NodeRecord.java trunk/fs/src/fs/org/jnode/fs/hfsplus/tree/RecordData.java trunk/fs/src/fs/org/jnode/fs/initrd/InitRamdisk.java trunk/fs/src/fs/org/jnode/fs/iso9660/Descriptor.java trunk/fs/src/fs/org/jnode/fs/iso9660/EntryRecord.java trunk/fs/src/fs/org/jnode/fs/iso9660/ISO9660Constants.java trunk/fs/src/fs/org/jnode/fs/iso9660/ISO9660DTime.java trunk/fs/src/fs/org/jnode/fs/iso9660/ISO9660Directory.java trunk/fs/src/fs/org/jnode/fs/iso9660/ISO9660Entry.java trunk/fs/src/fs/org/jnode/fs/iso9660/ISO9660File.java trunk/fs/src/fs/org/jnode/fs/iso9660/ISO9660FileSystem.java trunk/fs/src/fs/org/jnode/fs/iso9660/ISO9660FileSystemType.java trunk/fs/src/fs/org/jnode/fs/iso9660/ISO9660Volume.java trunk/fs/src/fs/org/jnode/fs/iso9660/PrimaryVolumeDescriptor.java trunk/fs/src/fs/org/jnode/fs/iso9660/SupplementaryVolumeDescriptor.java trunk/fs/src/fs/org/jnode/fs/iso9660/VolumeDescriptor.java trunk/fs/src/fs/org/jnode/fs/jarfs/FSTreeBuilder.java trunk/fs/src/fs/org/jnode/fs/jarfs/JarFSCache.java trunk/fs/src/fs/org/jnode/fs/jarfs/JarFSDirectory.java trunk/fs/src/fs/org/jnode/fs/jarfs/JarFSEntry.java trunk/fs/src/fs/org/jnode/fs/jarfs/JarFSFile.java trunk/fs/src/fs/org/jnode/fs/jarfs/JarFileSystem.java trunk/fs/src/fs/org/jnode/fs/jarfs/JarFileSystemType.java trunk/fs/src/fs/org/jnode/fs/jfat/BootSector.java trunk/fs/src/fs/org/jnode/fs/jfat/ClusterSize.java trunk/fs/src/fs/org/jnode/fs/jfat/CodePage.java trunk/fs/src/fs/org/jnode/fs/jfat/CodePageDecoder.java trunk/fs/src/fs/org/jnode/fs/jfat/CodePageEncoder.java trunk/fs/src/fs/org/jnode/fs/jfat/Fat.java trunk/fs/src/fs/org/jnode/fs/jfat/Fat32.java trunk/fs/src/fs/org/jnode/fs/jfat/FatAttr.java trunk/fs/src/fs/org/jnode/fs/jfat/FatCache.java trunk/fs/src/fs/org/jnode/fs/jfat/FatCase.java trunk/fs/src/fs/org/jnode/fs/jfat/FatChain.java trunk/fs/src/fs/org/jnode/fs/jfat/FatDirEntry.java trunk/fs/src/fs/org/jnode/fs/jfat/FatDirectory.java trunk/fs/src/fs/org/jnode/fs/jfat/FatDotDirEntry.java trunk/fs/src/fs/org/jnode/fs/jfat/FatEntry.java trunk/fs/src/fs/org/jnode/fs/jfat/FatFile.java trunk/fs/src/fs/org/jnode/fs/jfat/FatFileSystem.java trunk/fs/src/fs/org/jnode/fs/jfat/FatFileSystemFormatter.java trunk/fs/src/fs/org/jnode/fs/jfat/FatFileSystemType.java trunk/fs/src/fs/org/jnode/fs/jfat/FatFormatter.java trunk/fs/src/fs/org/jnode/fs/jfat/FatFsInfo.java trunk/fs/src/fs/org/jnode/fs/jfat/FatLongDirEntry.java trunk/fs/src/fs/org/jnode/fs/jfat/FatMarshal.java trunk/fs/src/fs/org/jnode/fs/jfat/FatName.java trunk/fs/src/fs/org/jnode/fs/jfat/FatObject.java trunk/fs/src/fs/org/jnode/fs/jfat/FatRecord.java trunk/fs/src/fs/org/jnode/fs/jfat/FatRootDirectory.java trunk/fs/src/fs/org/jnode/fs/jfat/FatShortDirEntry.java trunk/fs/src/fs/org/jnode/fs/jfat/FatTable.java trunk/fs/src/fs/org/jnode/fs/jfat/FatUtils.java trunk/fs/src/fs/org/jnode/fs/jfat/StrWriter.java trunk/fs/src/fs/org/jnode/fs/jfat/command/FatFormatCommand.java trunk/fs/src/fs/org/jnode/fs/jfat/command/GrubException.java trunk/fs/src/fs/org/jnode/fs/jfat/command/JGrub.java trunk/fs/src/fs/org/jnode/fs/jfat/command/JGrubInstallCommand.java trunk/fs/src/fs/org/jnode/fs/jfat/command/MBRFormatter.java trunk/fs/src/fs/org/jnode/fs/jfat/command/Stage1_5.java trunk/fs/src/fs/org/jnode/fs/jfat/command/Stage2.java trunk/fs/src/fs/org/jnode/fs/jifs/ExtFSEntry.java trunk/fs/src/fs/org/jnode/fs/jifs/JIFSDirIterator.java trunk/fs/src/fs/org/jnode/fs/jifs/JIFSDirectory.java trunk/fs/src/fs/org/jnode/fs/jifs/JIFSFile.java trunk/fs/src/fs/org/jnode/fs/jifs/JIFileSystem.java trunk/fs/src/fs/org/jnode/fs/jifs/JIFileSystemType.java trunk/fs/src/fs/org/jnode/fs/jifs/command/CreateJIFSCommand.java trunk/fs/src/fs/org/jnode/fs/jifs/def/JIFSExtension.java trunk/fs/src/fs/org/jnode/fs/jifs/def/JIFSPlugin.java trunk/fs/src/fs/org/jnode/fs/jifs/directories/JIFSDpluginJars.java trunk/fs/src/fs/org/jnode/fs/jifs/directories/JIFSDplugins.java trunk/fs/src/fs/org/jnode/fs/jifs/directories/JIFSDrootDir.java trunk/fs/src/fs/org/jnode/fs/jifs/directories/JIFSDthreads.java trunk/fs/src/fs/org/jnode/fs/jifs/files/JIFSFdevices.java trunk/fs/src/fs/org/jnode/fs/jifs/files/JIFSFfilesystems.java trunk/fs/src/fs/org/jnode/fs/jifs/files/JIFSFfragmentJar.java trunk/fs/src/fs/org/jnode/fs/jifs/files/JIFSFmemory.java trunk/fs/src/fs/org/jnode/fs/jifs/files/JIFSFplugin.java trunk/fs/src/fs/org/jnode/fs/jifs/files/JIFSFpluginJar.java trunk/fs/src/fs/org/jnode/fs/jifs/files/JIFSFthread.java trunk/fs/src/fs/org/jnode/fs/jifs/files/JIFSFuptime.java trunk/fs/src/fs/org/jnode/fs/jifs/files/JIFSFversion.java trunk/fs/src/fs/org/jnode/fs/nfs/command/NFSHostNameArgument.java trunk/fs/src/fs/org/jnode/fs/nfs/command/NFSMountCommand.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2AccessRights.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2Device.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2Directory.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2Driver.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2Entry.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2File.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2FileSystem.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2FileSystemType.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2Object.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/NFS2RootEntry.java trunk/fs/src/fs/org/jnode/fs/nfs/nfs2/TableEntry.java trunk/fs/src/fs/org/jnode/fs/ntfs/AttributeListAttribute.java trunk/fs/src/fs/org/jnode/fs/ntfs/AttributeListAttributeNonRes.java trunk/fs/src/fs/org/jnode/fs/ntfs/AttributeListAttributeRes.java trunk/fs/src/fs/org/jnode/fs/ntfs/AttributeListBlock.java trunk/fs/src/fs/org/jnode/fs/ntfs/AttributeListEntry.java trunk/fs/src/fs/org/jnode/fs/ntfs/BootRecord.java trunk/fs/src/fs/org/jnode/fs/ntfs/CompressedDataRun.java trunk/fs/src/fs/org/jnode/fs/ntfs/DataRun.java trunk/fs/src/fs/org/jnode/fs/ntfs/DataRunInterface.java trunk/fs/src/fs/org/jnode/fs/ntfs/DirectoryEntryIterator.java trunk/fs/src/fs/org/jnode/fs/ntfs/FileNameAttribute.java trunk/fs/src/fs/org/jnode/fs/ntfs/FileRecord.java trunk/fs/src/fs/org/jnode/fs/ntfs/IndexAllocationAttribute.java trunk/fs/src/fs/org/jnode/fs/ntfs/IndexBlock.java trunk/fs/src/fs/org/jnode/fs/ntfs/IndexEntry.java trunk/fs/src/fs/org/jnode/fs/ntfs/IndexEntryIterator.java trunk/fs/src/fs/org/jnode/fs/ntfs/IndexHeader.java trunk/fs/src/fs/org/jnode/fs/ntfs/IndexRoot.java trunk/fs/src/fs/org/jnode/fs/ntfs/IndexRootAttribute.java trunk/fs/src/fs/org/jnode/fs/ntfs/MasterFileTable.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSAttribute.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSDirectory.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSEntry.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSFile.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSFileSystem.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSFileSystemType.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSIndex.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSNonResidentAttribute.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSRecord.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSResidentAttribute.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSStructure.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSUTIL.java trunk/fs/src/fs/org/jnode/fs/ntfs/NTFSVolume.java trunk/fs/src/fs/org/jnode/fs/ntfs/StandardInformationAttribute.java trunk/fs/src/fs/org/jnode/fs/ramfs/RAMDirectory.java trunk/fs/src/fs/org/jnode/fs/ramfs/RAMFile.java trunk/fs/src/fs/org/jnode/fs/ramfs/RAMFileSystem.java trunk/fs/src/fs/org/jnode/fs/ramfs/RAMFileSystemType.java trunk/fs/src/fs/org/jnode/fs/ramfs/def/RAMFSPlugin.java trunk/fs/src/fs/org/jnode/fs/service/FileSystemService.java trunk/fs/src/fs/org/jnode/fs/service/def/FSEntryCache.java trunk/fs/src/fs/org/jnode/fs/service/def/FileHandleImpl.java trunk/fs/src/fs/org/jnode/fs/service/def/FileHandleManager.java trunk/fs/src/fs/org/jnode/fs/service/def/FileSystemAPIImpl.java trunk/fs/src/fs/org/jnode/fs/service/def/FileSystemManager.java trunk/fs/src/fs/org/jnode/fs/service/def/FileSystemMounter.java trunk/fs/src/fs/org/jnode/fs/service/def/FileSystemPlugin.java trunk/fs/src/fs/org/jnode/fs/service/def/FileSystemTypeManager.java trunk/fs/src/fs/org/jnode/fs/service/def/VirtualDirEntry.java trunk/fs/src/fs/org/jnode/fs/service/def/VirtualFS.java trunk/fs/src/fs/org/jnode/fs/service/def/VirtualFSDevice.java trunk/fs/src/fs/org/jnode/fs/service/def/VirtualMountEntry.java trunk/fs/src/fs/org/jnode/fs/smbfs/Format.java trunk/fs/src/fs/org/jnode/fs/smbfs/SMBFSDevice.java trunk/fs/src/fs/org/jnode/fs/smbfs/SMBFSDirectory.java trunk/fs/src/fs/org/jnode/fs/smbfs/SMBFSDriver.java trunk/fs/src/fs/org/jnode/fs/smbfs/SMBFSEntry.java trunk/fs/src/fs/org/jnode/fs/smbfs/SMBFSFile.java trunk/fs/src/fs/org/jnode/fs/smbfs/SMBFileSystem.java trunk/fs/src/fs/org/jnode/fs/smbfs/SMBFileSystemType.java trunk/fs/src/fs/org/jnode/fs/smbfs/SmbShell.java trunk/fs/src/fs/org/jnode/fs/smbfs/command/SMBMountCommand.java trunk/fs/src/fs/org/jnode/fs/spi/AbstractFSDirectory.java trunk/fs/src/fs/org/jnode/fs/spi/AbstractFSEntry.java trunk/fs/src/fs/org/jnode/fs/spi/AbstractFSFile.java trunk/fs/src/fs/org/jnode/fs/spi/AbstractFSObject.java trunk/fs/src/fs/org/jnode/fs/spi/AbstractFileSystem.java trunk/fs/src/fs/org/jnode/fs/spi/FSEntryTable.java trunk/fs/src/fs/org/jnode/fs/spi/UnixFSAccessRights.java trunk/fs/src/fs/org/jnode/fs/util/DosUtils.java trunk/fs/src/fs/org/jnode/fs/util/FSUtils.java trunk/fs/src/fs/org/jnode/partitions/PartitionTable.java trunk/fs/src/fs/org/jnode/partitions/PartitionTableEntry.java trunk/fs/src/fs/org/jnode/partitions/PartitionTableException.java trunk/fs/src/fs/org/jnode/partitions/PartitionTableType.java trunk/fs/src/fs/org/jnode/partitions/command/FdiskCommand.java trunk/fs/src/fs/org/jnode/partitions/command/IBMPartitionTypeArgument.java trunk/fs/src/fs/org/jnode/partitions/command/PartitionHelper.java trunk/fs/src/fs/org/jnode/partitions/ibm/IBMPartitionTable.java trunk/fs/src/fs/org/jnode/partitions/ibm/IBMPartitionTableEntry.java trunk/fs/src/fs/org/jnode/partitions/ibm/IBMPartitionTableType.java trunk/fs/src/fs/org/jnode/partitions/ibm/IBMPartitionTypes.java trunk/fs/src/fs/org/jnode/partitions/ibm/MasterBootRecord.java trunk/fs/src/fs/org/jnode/partitions/service/PartitionTableService.java trunk/fs/src/fs/org/jnode/partitions/service/def/PartitionTablePlugin.java trunk/fs/src/fs/org/jnode/partitions/service/def/PartitionTableTypeManager.java trunk/fs/src/test/org/jnode/fs/hfsplus/HfsPlusFileSystemTest.java trunk/fs/src/test/org/jnode/fs/ntfs/test/NTFSTest.java trunk/fs/src/test/org/jnode/test/fs/BlockDeviceStressTest.java trunk/fs/src/test/org/jnode/test/fs/DirTest.java trunk/fs/src/test/org/jnode/test/fs/FileTest.java trunk/fs/src/test/org/jnode/test/fs/FloppyTest.java trunk/fs/src/test/org/jnode/test/fs/GeometryTest.java trunk/fs/src/test/org/jnode/test/fs/IDETest.java trunk/fs/src/test/org/jnode/test/fs/LfnTest.java trunk/fs/src/test/org/jnode/test/fs/LowLevelIoTest.java trunk/fs/src/test/org/jnode/test/fs/SCSITest.java trunk/fs/src/test/org/jnode/test/fs/driver/BlockDeviceAPIContext.java trunk/fs/src/test/org/jnode/test/fs/driver/BlockDeviceAPITestConfig.java trunk/fs/src/test/org/jnode/test/fs/driver/BlockDeviceAPITestSuite.java trunk/fs/src/test/org/jnode/test/fs/driver/Partition.java trunk/fs/src/test/org/jnode/test/fs/driver/context/BlockAlignmentSupportContext.java trunk/fs/src/test/org/jnode/test/fs/driver/context/ByteArrayDeviceContext.java trunk/fs/src/test/org/jnode/test/fs/driver/context/FileDeviceContext.java trunk/fs/src/test/org/jnode/test/fs/driver/context/FloppyDriverContext.java trunk/fs/src/test/org/jnode/test/fs/driver/context/IDEDiskDriverContext.java trunk/fs/src/test/org/jnode/test/fs/driver/context/IDEDiskPartitionDriverContext.java trunk/fs/src/test/org/jnode/test/fs/driver/context/MappedBlockDeviceSupportContext.java trunk/fs/src/test/org/jnode/test/fs/driver/context/RamDiskDriverContext.java trunk/fs/src/test/org/jnode/test/fs/driver/context/SCSICDROMDriverContext.java trunk/fs/src/test/org/jnode/test/fs/driver/factories/AbstractMockDeviceFactory.java trunk/fs/src/test/org/jnode/test/fs/driver/factories/MockFloppyDeviceFactory.java trunk/fs/src/test/org/jnode/test/fs/driver/factories/MockIDEDeviceFactory.java trunk/fs/src/test/org/jnode/test/fs/driver/stubs/StubDeviceManager.java trunk/fs/src/test/org/jnode/test/fs/driver/stubs/StubNameSpace.java trunk/fs/src/test/org/jnode/test/fs/driver/tests/BlockDeviceAPITest.java trunk/fs/src/test/org/jnode/test/fs/filesystem/AbstractFSTest.java trunk/fs/src/test/org/jnode/test/fs/filesystem/FSConfigurations.java trunk/fs/src/test/org/jnode/test/fs/filesystem/FSContext.java trunk/fs/src/test/org/jnode/test/fs/filesystem/FSTestSuite.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/DeviceParam.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/FS.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/FSAccessMode.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/FSTestConfig.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/FSType.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/FileParam.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/JNodeDeviceParam.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/OsType.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/RamDiskParam.java trunk/fs/src/test/org/jnode/test/fs/filesystem/config/ResourceParam.java trunk/fs/src/test/org/jnode/test/fs/filesystem/tests/BasicFSTest.java trunk/fs/src/test/org/jnode/test/fs/filesystem/tests/CheckdiskTest.java trunk/fs/src/test/org/jnode/test/fs/filesystem/tests/ConcurrentAccessFSTest.java trunk/fs/src/test/org/jnode/test/fs/filesystem/tests/FileFSTest.java trunk/fs/src/test/org/jnode/test/fs/filesystem/tests/TreeFSTest.java trunk/fs/src/test/org/jnode/test/fs/ntfs/NTFSUnitTest.java trunk/fs/src/test/org/jnode/test/support/AbstractTest.java trunk/fs/src/test/org/jnode/test/support/AbstractTestSuite.java trunk/fs/src/test/org/jnode/test/support/CGLibCoreMockExt.java trunk/fs/src/test/org/jnode/test/support/ConfigManager.java trunk/fs/src/test/org/jnode/test/support/Context.java trunk/fs/src/test/org/jnode/test/support/ContextManager.java trunk/fs/src/test/org/jnode/test/support/MockInitializer.java trunk/fs/src/test/org/jnode/test/support/MockObjectFactory.java trunk/fs/src/test/org/jnode/test/support/MockUtils.java trunk/fs/src/test/org/jnode/test/support/TestConfig.java trunk/fs/src/test/org/jnode/test/support/TestUtils.java Modified: trunk/fs/src/driver/org/jnode/driver/block/BlockAlignmentSupport.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/BlockAlignmentSupport.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/BlockAlignmentSupport.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/BlockDeviceAPI.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/BlockDeviceAPI.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/BlockDeviceAPI.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/BlockDeviceAPIHelper.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/BlockDeviceAPIHelper.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/BlockDeviceAPIHelper.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/ByteArrayDevice.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/ByteArrayDevice.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/ByteArrayDevice.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/CHS.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/CHS.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/CHS.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/FSBlockAlignmentSupport.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/FSBlockAlignmentSupport.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/FSBlockAlignmentSupport.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/FSBlockDeviceAPI.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/FSBlockDeviceAPI.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/FSBlockDeviceAPI.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/FileDevice.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/FileDevice.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/FileDevice.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/Geometry.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/Geometry.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/Geometry.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/GeometryException.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/GeometryException.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/GeometryException.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* - * $Id: Geometry.java 4975 2009-02-02 08:30:52Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.driver.block; import java.io.IOException; Modified: trunk/fs/src/driver/org/jnode/driver/block/JarFileDevice.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/JarFileDevice.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/JarFileDevice.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/MappedBlockDeviceSupport.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/MappedBlockDeviceSupport.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/MappedBlockDeviceSupport.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/MappedFSBlockDeviceSupport.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/MappedFSBlockDeviceSupport.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/MappedFSBlockDeviceSupport.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/PartitionableBlockAlignmentSupport.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/PartitionableBlockAlignmentSupport.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/PartitionableBlockAlignmentSupport.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/PartitionableBlockDeviceAPI.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/PartitionableBlockDeviceAPI.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/PartitionableBlockDeviceAPI.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/DefaultFDC.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/DefaultFDC.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/DefaultFDC.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FDC.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FDC.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FDC.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyCommand.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyCommand.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyCommand.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyConstants.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyConstants.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyConstants.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerBus.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerBus.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerBus.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerDevice.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerDevice.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerDevice.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerDriver.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerDriver.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerDriver.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerFinder.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerFinder.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyControllerFinder.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDevice.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDevice.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDevice.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDeviceToDriverMapper.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDeviceToDriverMapper.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDeviceToDriverMapper.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriveParameters.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriveParameters.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriveParameters.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriveParametersCommand.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriveParametersCommand.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriveParametersCommand.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriver.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriver.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyDriver.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyException.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyException.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyException.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyIdCommand.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyIdCommand.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyIdCommand.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyParameters.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyParameters.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyParameters.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyReadSectorCommand.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyReadSectorCommand.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyReadSectorCommand.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppySeekCommand.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppySeekCommand.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppySeekCommand.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyWriteSectorCommand.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyWriteSectorCommand.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/FloppyWriteSectorCommand.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/support/DefaultFloppyDeviceFactory.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/support/DefaultFloppyDeviceFactory.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/support/DefaultFloppyDeviceFactory.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/support/FloppyDeviceFactory.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/support/FloppyDeviceFactory.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/support/FloppyDeviceFactory.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/floppy/support/FloppyDriverUtils.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/floppy/support/FloppyDriverUtils.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/floppy/support/FloppyDriverUtils.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDeviceToDriverMapper.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDeviceToDriverMapper.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDeviceToDriverMapper.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDriver.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDriver.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskDriver.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskPartitionDevice.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskPartitionDevice.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskPartitionDevice.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskPartitionDriver.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskPartitionDriver.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/ide/disk/IDEDiskPartitionDriver.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/ramdisk/RamDiskDevice.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/ramdisk/RamDiskDevice.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/ramdisk/RamDiskDevice.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/ramdisk/RamDiskDriver.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/ramdisk/RamDiskDriver.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/ramdisk/RamDiskDriver.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/ramdisk/command/RamDiskCommand.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/ramdisk/command/RamDiskCommand.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/ramdisk/command/RamDiskCommand.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/scsi/cdrom/CDROMDeviceToDriverMapper.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/scsi/cdrom/CDROMDeviceToDriverMapper.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/scsi/cdrom/CDROMDeviceToDriverMapper.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/scsi/cdrom/SCSICDROMDriver.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/scsi/cdrom/SCSICDROMDriver.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/scsi/cdrom/SCSICDROMDriver.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/usb/storage/CBW.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/usb/storage/CBW.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/usb/storage/CBW.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/fs/src/driver/org/jnode/driver/block/usb/storage/CSW.java =================================================================== --- trunk/fs/src/driver/org/jnode/driver/block/usb/storage/CSW.java 2010-01-03 11:46:38 UTC (rev 5709) +++ trunk/fs/src/driver/org/jnode/driver/block/usb/storage/CSW.java 2010-01-03 12:02:53 UTC (rev 5710) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-20... [truncated message content] |
From: <ls...@us...> - 2010-01-03 11:46:58
|
Revision: 5709 http://jnode.svn.sourceforge.net/jnode/?rev=5709&view=rev Author: lsantha Date: 2010-01-03 11:46:38 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/core/src/classpath/ext/java/nio/channels/LinkChannel.java trunk/core/src/classpath/ext/java/util/prefs/TransientPreferences.java trunk/core/src/classpath/ext/javax/cache/Cache.java trunk/core/src/classpath/ext/javax/cache/CacheEntry.java trunk/core/src/classpath/ext/javax/cache/CacheException.java trunk/core/src/classpath/ext/javax/cache/CacheFactory.java trunk/core/src/classpath/ext/javax/cache/CacheListener.java trunk/core/src/classpath/ext/javax/cache/CacheLoader.java trunk/core/src/classpath/ext/javax/cache/CacheManager.java trunk/core/src/classpath/ext/javax/cache/CacheStatistics.java trunk/core/src/classpath/ext/javax/cache/EvictionStrategy.java trunk/core/src/classpath/ext/javax/isolate/AbstractLinkMessageHandler.java trunk/core/src/classpath/ext/javax/isolate/ClosedLinkException.java trunk/core/src/classpath/ext/javax/isolate/Isolate.java trunk/core/src/classpath/ext/javax/isolate/IsolatePermission.java trunk/core/src/classpath/ext/javax/isolate/IsolateStartupException.java trunk/core/src/classpath/ext/javax/isolate/IsolateStatus.java trunk/core/src/classpath/ext/javax/isolate/Link.java trunk/core/src/classpath/ext/javax/isolate/LinkMessage.java trunk/core/src/classpath/ext/javax/isolate/LinkMessageDispatcher.java trunk/core/src/classpath/ext/javax/isolate/LinkMessageHandler.java trunk/core/src/classpath/ext/javax/isolate/StreamBindings.java trunk/core/src/classpath/vm/gnu/classpath/NativeSystemProperties.java trunk/core/src/classpath/vm/gnu/classpath/NativeVMStackWalker.java trunk/core/src/classpath/vm/gnu/classpath/jdwp/JNodeSocketTransport.java trunk/core/src/classpath/vm/gnu/classpath/jdwp/NativeVMFrame.java trunk/core/src/classpath/vm/gnu/classpath/jdwp/NativeVMMethod.java trunk/core/src/classpath/vm/gnu/classpath/jdwp/NativeVMVirtualMachine.java trunk/core/src/classpath/vm/gnu/classpath/jdwp/transport/NativeTransportFactory.java trunk/core/src/classpath/vm/gnu/java/security/action/GetEnvAction.java trunk/core/src/classpath/vm/gnu/java/security/action/GetPolicyAction.java trunk/core/src/classpath/vm/gnu/java/security/action/GetPropertiesAction.java trunk/core/src/classpath/vm/gnu/java/security/action/InvokeAction.java trunk/core/src/classpath/vm/gnu/java/security/action/SetPropertyAction.java trunk/core/src/classpath/vm/gnu/java/security/util/SimplePermissionCollection.java trunk/core/src/classpath/vm/java/awt/VMAwtAPI.java trunk/core/src/classpath/vm/java/awt/image/VMImageAPI.java trunk/core/src/classpath/vm/java/awt/image/VMImageUtils.java trunk/core/src/classpath/vm/java/lang/NativeClassLoader.java trunk/core/src/classpath/vm/java/lang/NativeSecurityManager.java trunk/core/src/classpath/vm/java/lang/NativeThread.java trunk/core/src/classpath/vm/java/lang/NativeVMClassLoader.java trunk/core/src/classpath/vm/java/lang/ThreadHelper.java trunk/core/src/classpath/vm/java/lang/VMRuntime.java trunk/core/src/classpath/vm/java/lang/VMSecurityManager.java trunk/core/src/classpath/vm/java/net/ExSocketOptions.java trunk/core/src/classpath/vm/java/net/VMInetAddress.java trunk/core/src/classpath/vm/java/net/VMNetAPI.java trunk/core/src/classpath/vm/java/net/VMNetDevice.java trunk/core/src/classpath/vm/java/net/VMNetUtils.java trunk/core/src/classpath/vm/java/net/VMNetworkInterface.java trunk/core/src/classpath/vm/java/nio/MemoryRawData.java trunk/core/src/classpath/vm/java/nio/NativeVMDirectByteBuffer.java trunk/core/src/classpath/vm/java/nio/channels/NativeVMChannels.java trunk/core/src/classpath/vm/java/security/NativeAccessControlContext.java trunk/core/src/classpath/vm/java/security/NativeAccessController.java trunk/core/src/classpath/vm/java/security/VMSecureRandom.java trunk/core/src/classpath/vm/javax/imageio/spi/NativeIIORegistry.java trunk/core/src/core/org/jnode/assembler/BootImageNativeStream.java trunk/core/src/core/org/jnode/assembler/Label.java trunk/core/src/core/org/jnode/assembler/NativeStream.java trunk/core/src/core/org/jnode/assembler/ObjectResolver.java trunk/core/src/core/org/jnode/assembler/UnresolvedObjectRefException.java trunk/core/src/core/org/jnode/assembler/x86/InvalidOpcodeException.java trunk/core/src/core/org/jnode/assembler/x86/X86Assembler.java trunk/core/src/core/org/jnode/assembler/x86/X86BinaryAssembler.java trunk/core/src/core/org/jnode/assembler/x86/X86Constants.java trunk/core/src/core/org/jnode/assembler/x86/X86Operation.java trunk/core/src/core/org/jnode/assembler/x86/X86Register.java trunk/core/src/core/org/jnode/assembler/x86/X86TextAssembler.java trunk/core/src/core/org/jnode/assembler/x86/X86Utils.java trunk/core/src/core/org/jnode/boot/InitJarProcessor.java trunk/core/src/core/org/jnode/boot/Main.java trunk/core/src/core/org/jnode/boot/MemoryResourceInputStream.java trunk/core/src/core/org/jnode/boot/NoCloseInputStream.java trunk/core/src/core/org/jnode/debug/RemoteAppender.java trunk/core/src/core/org/jnode/debug/RemoteReceiver.java trunk/core/src/core/org/jnode/debug/UDPOutputStream.java trunk/core/src/core/org/jnode/debugger/DebugState.java trunk/core/src/core/org/jnode/debugger/Debugger.java trunk/core/src/core/org/jnode/debugger/DebuggerPlugin.java trunk/core/src/core/org/jnode/debugger/DebuggerUtils.java trunk/core/src/core/org/jnode/debugger/RootState.java trunk/core/src/core/org/jnode/debugger/ThreadListState.java trunk/core/src/core/org/jnode/debugger/ThreadState.java trunk/core/src/core/org/jnode/imageio/jpeg/JPEGDecoder.java trunk/core/src/core/org/jnode/imageio/jpeg/JPEGDecoderAdapter.java trunk/core/src/core/org/jnode/imageio/jpeg/JPEGException.java trunk/core/src/core/org/jnode/imageio/jpeg/JPEGImageReader.java trunk/core/src/core/org/jnode/imageio/jpeg/JPEGImageReaderSpi.java trunk/core/src/core/org/jnode/log4j/config/JNodeSystemAppender.java trunk/core/src/core/org/jnode/log4j/config/Log4jConfigurePlugin.java trunk/core/src/core/org/jnode/log4j/config/UnsafeDebugAppender.java trunk/core/src/core/org/jnode/log4j/config/VirtualConsoleAppender.java trunk/core/src/core/org/jnode/naming/AbstractNameSpace.java trunk/core/src/core/org/jnode/naming/DefaultNameSpace.java trunk/core/src/core/org/jnode/naming/InitialNaming.java trunk/core/src/core/org/jnode/naming/NameSpace.java trunk/core/src/core/org/jnode/naming/NameSpaceListener.java trunk/core/src/core/org/jnode/plugin/AutoUnzipPlugin.java trunk/core/src/core/org/jnode/plugin/ConfigurationElement.java trunk/core/src/core/org/jnode/plugin/Extension.java trunk/core/src/core/org/jnode/plugin/ExtensionPoint.java trunk/core/src/core/org/jnode/plugin/ExtensionPointListener.java trunk/core/src/core/org/jnode/plugin/FragmentDescriptor.java trunk/core/src/core/org/jnode/plugin/Library.java trunk/core/src/core/org/jnode/plugin/Plugin.java trunk/core/src/core/org/jnode/plugin/PluginClassLoader.java trunk/core/src/core/org/jnode/plugin/PluginDescriptor.java trunk/core/src/core/org/jnode/plugin/PluginDescriptorListener.java trunk/core/src/core/org/jnode/plugin/PluginException.java trunk/core/src/core/org/jnode/plugin/PluginLoader.java trunk/core/src/core/org/jnode/plugin/PluginLoaderManager.java trunk/core/src/core/org/jnode/plugin/PluginManager.java trunk/core/src/core/org/jnode/plugin/PluginPrerequisite.java trunk/core/src/core/org/jnode/plugin/PluginReference.java trunk/core/src/core/org/jnode/plugin/PluginRegistry.java trunk/core/src/core/org/jnode/plugin/PluginSecurityConstants.java trunk/core/src/core/org/jnode/plugin/PluginUtils.java trunk/core/src/core/org/jnode/plugin/Runtime.java trunk/core/src/core/org/jnode/plugin/URLPluginLoader.java trunk/core/src/core/org/jnode/plugin/manager/DefaultPluginLoaderManager.java trunk/core/src/core/org/jnode/plugin/manager/DefaultPluginManager.java trunk/core/src/core/org/jnode/plugin/model/AbstractModelObject.java trunk/core/src/core/org/jnode/plugin/model/AttributeModel.java trunk/core/src/core/org/jnode/plugin/model/ConfigurationElementModel.java trunk/core/src/core/org/jnode/plugin/model/EmptyPlugin.java trunk/core/src/core/org/jnode/plugin/model/ExtensionModel.java trunk/core/src/core/org/jnode/plugin/model/ExtensionPointModel.java trunk/core/src/core/org/jnode/plugin/model/Factory.java trunk/core/src/core/org/jnode/plugin/model/FragmentDescriptorModel.java trunk/core/src/core/org/jnode/plugin/model/LibraryModel.java trunk/core/src/core/org/jnode/plugin/model/PluginClassLoaderImpl.java trunk/core/src/core/org/jnode/plugin/model/PluginDescriptorModel.java trunk/core/src/core/org/jnode/plugin/model/PluginJar.java trunk/core/src/core/org/jnode/plugin/model/PluginModelObject.java trunk/core/src/core/org/jnode/plugin/model/PluginPrerequisiteModel.java trunk/core/src/core/org/jnode/plugin/model/PluginRegistryModel.java trunk/core/src/core/org/jnode/plugin/model/PluginsClassLoader.java trunk/core/src/core/org/jnode/plugin/model/RuntimeModel.java trunk/core/src/core/org/jnode/protocol/ProtocolHandlerFactoryPlugin.java trunk/core/src/core/org/jnode/protocol/plugin/Handler.java trunk/core/src/core/org/jnode/protocol/plugin/PluginURLConnection.java trunk/core/src/core/org/jnode/protocol/system/Handler.java trunk/core/src/core/org/jnode/protocol/system/SystemURLConnection.java trunk/core/src/core/org/jnode/security/JNodePermission.java trunk/core/src/core/org/jnode/security/JNodePolicy.java trunk/core/src/core/org/jnode/security/JNodeSecurityManager.java trunk/core/src/core/org/jnode/security/SecurityPlugin.java trunk/core/src/core/org/jnode/system/BootLog.java trunk/core/src/core/org/jnode/system/DMAException.java trunk/core/src/core/org/jnode/system/DMAManager.java trunk/core/src/core/org/jnode/system/DMAResource.java trunk/core/src/core/org/jnode/system/IOResource.java trunk/core/src/core/org/jnode/system/IRQHandler.java trunk/core/src/core/org/jnode/system/IRQResource.java trunk/core/src/core/org/jnode/system/MemoryResource.java trunk/core/src/core/org/jnode/system/MemoryScanner.java trunk/core/src/core/org/jnode/system/MultiMediaMemoryResource.java trunk/core/src/core/org/jnode/system/Resource.java trunk/core/src/core/org/jnode/system/ResourceManager.java trunk/core/src/core/org/jnode/system/ResourceNotFreeException.java trunk/core/src/core/org/jnode/system/ResourceOwner.java trunk/core/src/core/org/jnode/system/ResourcePermission.java trunk/core/src/core/org/jnode/system/SimpleResourceOwner.java trunk/core/src/core/org/jnode/system/event/FocusEvent.java trunk/core/src/core/org/jnode/system/event/FocusListener.java trunk/core/src/core/org/jnode/system/event/SystemEvent.java trunk/core/src/core/org/jnode/system/repository/Repository.java trunk/core/src/core/org/jnode/system/repository/RepositoryPlugin.java trunk/core/src/core/org/jnode/system/repository/RepositoryPluginLoader.java trunk/core/src/core/org/jnode/system/repository/SystemRepository.java trunk/core/src/core/org/jnode/system/repository/SystemRepositoryPlugin.java trunk/core/src/core/org/jnode/system/repository/plugins/PluginLoaderPlugin.java trunk/core/src/core/org/jnode/system/repository/spi/SystemRepositoryProvider.java trunk/core/src/core/org/jnode/system/x86/DMA.java trunk/core/src/core/org/jnode/system/x86/DMAConstants.java trunk/core/src/core/org/jnode/system/x86/DMAPlugin.java trunk/core/src/core/org/jnode/system/x86/X86DMAChannel.java trunk/core/src/core/org/jnode/util/AccessControllerUtils.java trunk/core/src/core/org/jnode/util/BCDUtils.java trunk/core/src/core/org/jnode/util/BeanUtils.java trunk/core/src/core/org/jnode/util/BigEndian.java trunk/core/src/core/org/jnode/util/BinaryScaleFactor.java trunk/core/src/core/org/jnode/util/BooleanUtils.java trunk/core/src/core/org/jnode/util/BootableArrayList.java trunk/core/src/core/org/jnode/util/BootableHashMap.java trunk/core/src/core/org/jnode/util/ByteBufferInputStream.java trunk/core/src/core/org/jnode/util/ByteBufferUtils.java trunk/core/src/core/org/jnode/util/ByteQueue.java trunk/core/src/core/org/jnode/util/ByteQueueProcessor.java trunk/core/src/core/org/jnode/util/ByteQueueProcessorThread.java trunk/core/src/core/org/jnode/util/ChannelInputStream.java trunk/core/src/core/org/jnode/util/ChannelOutputStream.java trunk/core/src/core/org/jnode/util/Command.java trunk/core/src/core/org/jnode/util/ConsoleStream.java trunk/core/src/core/org/jnode/util/Counter.java trunk/core/src/core/org/jnode/util/CounterGroup.java trunk/core/src/core/org/jnode/util/DecimalScaleFactor.java trunk/core/src/core/org/jnode/util/EmptyInputStream.java trunk/core/src/core/org/jnode/util/FileUtils.java trunk/core/src/core/org/jnode/util/IOUtils.java trunk/core/src/core/org/jnode/util/JarBuffer.java trunk/core/src/core/org/jnode/util/JarConstants.java trunk/core/src/core/org/jnode/util/LittleEndian.java trunk/core/src/core/org/jnode/util/NumberUtils.java trunk/core/src/core/org/jnode/util/ObjectArrayIterator.java trunk/core/src/core/org/jnode/util/ObjectUtils.java trunk/core/src/core/org/jnode/util/OsUtils.java trunk/core/src/core/org/jnode/util/PipeStream.java trunk/core/src/core/org/jnode/util/ProxyStream.java trunk/core/src/core/org/jnode/util/ProxyStreamException.java trunk/core/src/core/org/jnode/util/Queue.java trunk/core/src/core/org/jnode/util/QueueProcessor.java trunk/core/src/core/org/jnode/util/QueueProcessorThread.java trunk/core/src/core/org/jnode/util/ReaderInputStream.java trunk/core/src/core/org/jnode/util/ScaleFactor.java trunk/core/src/core/org/jnode/util/SizeUnit.java trunk/core/src/core/org/jnode/util/Statistic.java trunk/core/src/core/org/jnode/util/Statistics.java trunk/core/src/core/org/jnode/util/StopWatch.java trunk/core/src/core/org/jnode/util/SynchronizedCounter.java trunk/core/src/core/org/jnode/util/SystemInputStream.java trunk/core/src/core/org/jnode/util/TimeUtils.java trunk/core/src/core/org/jnode/util/TimeoutException.java trunk/core/src/core/org/jnode/util/Token.java trunk/core/src/core/org/jnode/util/WriterOutputStream.java trunk/core/src/core/org/jnode/vm/AllocationBitmap.java trunk/core/src/core/org/jnode/vm/BootableObject.java trunk/core/src/core/org/jnode/vm/CpuID.java trunk/core/src/core/org/jnode/vm/HeapHelperImpl.java trunk/core/src/core/org/jnode/vm/IOContext.java trunk/core/src/core/org/jnode/vm/IOResourceImpl.java trunk/core/src/core/org/jnode/vm/InternString.java trunk/core/src/core/org/jnode/vm/JvmType.java trunk/core/src/core/org/jnode/vm/LoadCompileService.java trunk/core/src/core/org/jnode/vm/LoadCompileThread.java trunk/core/src/core/org/jnode/vm/MathSupport.java trunk/core/src/core/org/jnode/vm/MemoryBlockManager.java trunk/core/src/core/org/jnode/vm/MemoryMapEntry.java trunk/core/src/core/org/jnode/vm/MemoryResourceImpl.java trunk/core/src/core/org/jnode/vm/MemoryScannerImpl.java trunk/core/src/core/org/jnode/vm/MultiMediaMemoryResourceImpl.java trunk/core/src/core/org/jnode/vm/ObjectVisitor.java trunk/core/src/core/org/jnode/vm/RTCService.java trunk/core/src/core/org/jnode/vm/Region.java trunk/core/src/core/org/jnode/vm/ResourceLoader.java trunk/core/src/core/org/jnode/vm/ResourceManagerImpl.java trunk/core/src/core/org/jnode/vm/SoftByteCodes.java trunk/core/src/core/org/jnode/vm/Unsafe.java trunk/core/src/core/org/jnode/vm/VirtualMemoryRegion.java trunk/core/src/core/org/jnode/vm/Vm.java trunk/core/src/core/org/jnode/vm/VmAbstractClassLoader.java trunk/core/src/core/org/jnode/vm/VmAccessControlContext.java trunk/core/src/core/org/jnode/vm/VmAccessController.java trunk/core/src/core/org/jnode/vm/VmAddress.java trunk/core/src/core/org/jnode/vm/VmArchitecture.java trunk/core/src/core/org/jnode/vm/VmExit.java trunk/core/src/core/org/jnode/vm/VmIOContext.java trunk/core/src/core/org/jnode/vm/VmJavaClassLoader.java trunk/core/src/core/org/jnode/vm/VmJavaMultiMediaSupport.java trunk/core/src/core/org/jnode/vm/VmMagic.java trunk/core/src/core/org/jnode/vm/VmMultiMediaSupport.java trunk/core/src/core/org/jnode/vm/VmProcess.java trunk/core/src/core/org/jnode/vm/VmProcessClassLoader.java trunk/core/src/core/org/jnode/vm/VmReflection.java trunk/core/src/core/org/jnode/vm/VmStackFrame.java trunk/core/src/core/org/jnode/vm/VmStackFrameEnumerator.java trunk/core/src/core/org/jnode/vm/VmStackReader.java trunk/core/src/core/org/jnode/vm/VmSystem.java trunk/core/src/core/org/jnode/vm/VmSystemClassLoader.java trunk/core/src/core/org/jnode/vm/VmSystemObject.java trunk/core/src/core/org/jnode/vm/VmUtils.java trunk/core/src/core/org/jnode/vm/bytecode/BasicBlock.java trunk/core/src/core/org/jnode/vm/bytecode/BasicBlockFinder.java trunk/core/src/core/org/jnode/vm/bytecode/BytecodeFlags.java trunk/core/src/core/org/jnode/vm/bytecode/BytecodeParser.java trunk/core/src/core/org/jnode/vm/bytecode/BytecodeViewer.java trunk/core/src/core/org/jnode/vm/bytecode/BytecodeVisitor.java trunk/core/src/core/org/jnode/vm/bytecode/BytecodeVisitorSupport.java trunk/core/src/core/org/jnode/vm/bytecode/BytecodeWriter.java trunk/core/src/core/org/jnode/vm/bytecode/ControlFlowGraph.java trunk/core/src/core/org/jnode/vm/bytecode/DelegatingBytecodeVisitor.java trunk/core/src/core/org/jnode/vm/bytecode/StackException.java trunk/core/src/core/org/jnode/vm/bytecode/TypeStack.java trunk/core/src/core/org/jnode/vm/classmgr/AbstractCode.java trunk/core/src/core/org/jnode/vm/classmgr/AbstractExceptionHandler.java trunk/core/src/core/org/jnode/vm/classmgr/ClassDecoder.java trunk/core/src/core/org/jnode/vm/classmgr/CompiledCodeList.java trunk/core/src/core/org/jnode/vm/classmgr/IMTBuilder.java trunk/core/src/core/org/jnode/vm/classmgr/MethodPragmaFlags.java trunk/core/src/core/org/jnode/vm/classmgr/Modifier.java trunk/core/src/core/org/jnode/vm/classmgr/NotResolvedYetException.java trunk/core/src/core/org/jnode/vm/classmgr/ObjectFlags.java trunk/core/src/core/org/jnode/vm/classmgr/ObjectLayout.java trunk/core/src/core/org/jnode/vm/classmgr/SelectorMap.java trunk/core/src/core/org/jnode/vm/classmgr/Signature.java trunk/core/src/core/org/jnode/vm/classmgr/TIBBuilder.java trunk/core/src/core/org/jnode/vm/classmgr/TIBLayout.java trunk/core/src/core/org/jnode/vm/classmgr/TypePragmaFlags.java trunk/core/src/core/org/jnode/vm/classmgr/TypeSizeInfo.java trunk/core/src/core/org/jnode/vm/classmgr/VmAddressMap.java trunk/core/src/core/org/jnode/vm/classmgr/VmAnnotatedElement.java trunk/core/src/core/org/jnode/vm/classmgr/VmAnnotation.java trunk/core/src/core/org/jnode/vm/classmgr/VmArray.java trunk/core/src/core/org/jnode/vm/classmgr/VmArrayClass.java trunk/core/src/core/org/jnode/vm/classmgr/VmByteCode.java trunk/core/src/core/org/jnode/vm/classmgr/VmCP.java trunk/core/src/core/org/jnode/vm/classmgr/VmClassLoader.java trunk/core/src/core/org/jnode/vm/classmgr/VmClassType.java trunk/core/src/core/org/jnode/vm/classmgr/VmCompiledCode.java trunk/core/src/core/org/jnode/vm/classmgr/VmCompiledExceptionHandler.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstClass.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstDouble.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstFieldRef.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstFloat.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstIMethodRef.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstInt.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstLong.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstMemberRef.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstMethodRef.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstObject.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstString.java trunk/core/src/core/org/jnode/vm/classmgr/VmConstantPool.java trunk/core/src/core/org/jnode/vm/classmgr/VmExceptions.java trunk/core/src/core/org/jnode/vm/classmgr/VmField.java trunk/core/src/core/org/jnode/vm/classmgr/VmImplementedInterface.java trunk/core/src/core/org/jnode/vm/classmgr/VmInstanceField.java trunk/core/src/core/org/jnode/vm/classmgr/VmInstanceMethod.java trunk/core/src/core/org/jnode/vm/classmgr/VmInterfaceClass.java trunk/core/src/core/org/jnode/vm/classmgr/VmInterpretedExceptionHandler.java trunk/core/src/core/org/jnode/vm/classmgr/VmIsolatedStatics.java trunk/core/src/core/org/jnode/vm/classmgr/VmIsolatedStaticsEntry.java trunk/core/src/core/org/jnode/vm/classmgr/VmLineNumberMap.java trunk/core/src/core/org/jnode/vm/classmgr/VmLocalVariable.java trunk/core/src/core/org/jnode/vm/classmgr/VmLocalVariableTable.java trunk/core/src/core/org/jnode/vm/classmgr/VmMember.java trunk/core/src/core/org/jnode/vm/classmgr/VmMethod.java trunk/core/src/core/org/jnode/vm/classmgr/VmMethodCode.java trunk/core/src/core/org/jnode/vm/classmgr/VmNormalClass.java trunk/core/src/core/org/jnode/vm/classmgr/VmObject.java trunk/core/src/core/org/jnode/vm/classmgr/VmPrimitiveClass.java trunk/core/src/core/org/jnode/vm/classmgr/VmResolvableConstObject.java trunk/core/src/core/org/jnode/vm/classmgr/VmSharedStatics.java trunk/core/src/core/org/jnode/vm/classmgr/VmSharedStaticsEntry.java trunk/core/src/core/org/jnode/vm/classmgr/VmSpecialMethod.java trunk/core/src/core/org/jnode/vm/classmgr/VmStaticField.java trunk/core/src/core/org/jnode/vm/classmgr/VmStaticMethod.java trunk/core/src/core/org/jnode/vm/classmgr/VmStatics.java trunk/core/src/core/org/jnode/vm/classmgr/VmStaticsAllocator.java trunk/core/src/core/org/jnode/vm/classmgr/VmStaticsBase.java trunk/core/src/core/org/jnode/vm/classmgr/VmStaticsIterator.java trunk/core/src/core/org/jnode/vm/classmgr/VmType.java trunk/core/src/core/org/jnode/vm/classmgr/VmTypeState.java trunk/core/src/core/org/jnode/vm/classmgr/VmUTF8Convert.java trunk/core/src/core/org/jnode/vm/compiler/BaseMagicHelper.java trunk/core/src/core/org/jnode/vm/compiler/CompileError.java trunk/core/src/core/org/jnode/vm/compiler/CompiledExceptionHandler.java trunk/core/src/core/org/jnode/vm/compiler/CompiledIMT.java trunk/core/src/core/org/jnode/vm/compiler/CompiledMethod.java trunk/core/src/core/org/jnode/vm/compiler/CompilerBytecodeParser.java trunk/core/src/core/org/jnode/vm/compiler/CompilerBytecodeViewer.java trunk/core/src/core/org/jnode/vm/compiler/CompilerBytecodeVisitor.java trunk/core/src/core/org/jnode/vm/compiler/DelegatingCompilerBytecodeVisitor.java trunk/core/src/core/org/jnode/vm/compiler/EntryPoints.java trunk/core/src/core/org/jnode/vm/compiler/GCMapIterator.java trunk/core/src/core/org/jnode/vm/compiler/IMTCompiler.java trunk/core/src/core/org/jnode/vm/compiler/IllegalModeException.java trunk/core/src/core/org/jnode/vm/compiler/InlineBytecodeVisitor.java trunk/core/src/core/org/jnode/vm/compiler/NativeCodeCompiler.java trunk/core/src/core/org/jnode/vm/compiler/OptimizingBytecodeVisitor.java trunk/core/src/core/org/jnode/vm/compiler/VerifyingCompilerBytecodeVisitor.java trunk/core/src/core/org/jnode/vm/compiler/ir/AddressingMode.java trunk/core/src/core/org/jnode/vm/compiler/ir/CodeGenerator.java trunk/core/src/core/org/jnode/vm/compiler/ir/Constant.java trunk/core/src/core/org/jnode/vm/compiler/ir/DoubleConstant.java trunk/core/src/core/org/jnode/vm/compiler/ir/FloatConstant.java trunk/core/src/core/org/jnode/vm/compiler/ir/IRBasicBlock.java trunk/core/src/core/org/jnode/vm/compiler/ir/IRBasicBlockFinder.java trunk/core/src/core/org/jnode/vm/compiler/ir/IRControlFlowGraph.java trunk/core/src/core/org/jnode/vm/compiler/ir/IRGenerator.java trunk/core/src/core/org/jnode/vm/compiler/ir/IRTest.java trunk/core/src/core/org/jnode/vm/compiler/ir/IntConstant.java trunk/core/src/core/org/jnode/vm/compiler/ir/LinearScanAllocator.java trunk/core/src/core/org/jnode/vm/compiler/ir/LiveRange.java trunk/core/src/core/org/jnode/vm/compiler/ir/LocalVariable.java trunk/core/src/core/org/jnode/vm/compiler/ir/Location.java trunk/core/src/core/org/jnode/vm/compiler/ir/LongConstant.java trunk/core/src/core/org/jnode/vm/compiler/ir/MethodArgument.java trunk/core/src/core/org/jnode/vm/compiler/ir/NativeTest.java trunk/core/src/core/org/jnode/vm/compiler/ir/Operand.java trunk/core/src/core/org/jnode/vm/compiler/ir/PhiOperand.java trunk/core/src/core/org/jnode/vm/compiler/ir/PrimitiveTest.java trunk/core/src/core/org/jnode/vm/compiler/ir/ReferenceConstant.java trunk/core/src/core/org/jnode/vm/compiler/ir/RegisterLocation.java trunk/core/src/core/org/jnode/vm/compiler/ir/RegisterPool.java trunk/core/src/core/org/jnode/vm/compiler/ir/SSAStack.java trunk/core/src/core/org/jnode/vm/compiler/ir/StackLocation.java trunk/core/src/core/org/jnode/vm/compiler/ir/StackVariable.java trunk/core/src/core/org/jnode/vm/compiler/ir/Variable.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/AssignQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/BinaryOperation.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/BinaryQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/BranchCondition.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/BranchQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/ConditionalBranchQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/ConstantRefAssignQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/PhiAssignQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/Quad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/UnaryOperation.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/UnaryQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/UnconditionalBranchQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/VarReturnQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/VariableRefAssignQuad.java trunk/core/src/core/org/jnode/vm/compiler/ir/quad/VoidReturnQuad.java trunk/core/src/core/org/jnode/vm/isolate/DataLinkMessage.java trunk/core/src/core/org/jnode/vm/isolate/IsolateLinkMessage.java trunk/core/src/core/org/jnode/vm/isolate/IsolateStatusImpl.java trunk/core/src/core/org/jnode/vm/isolate/IsolateThread.java trunk/core/src/core/org/jnode/vm/isolate/IsolateThreadFactory.java trunk/core/src/core/org/jnode/vm/isolate/LinkImpl.java trunk/core/src/core/org/jnode/vm/isolate/LinkLinkMessage.java trunk/core/src/core/org/jnode/vm/isolate/LinkMessageFactory.java trunk/core/src/core/org/jnode/vm/isolate/LinkMessageImpl.java trunk/core/src/core/org/jnode/vm/isolate/ObjectLinkMessage.java trunk/core/src/core/org/jnode/vm/isolate/StatusLinkMessage.java trunk/core/src/core/org/jnode/vm/isolate/StringLinkMessage.java trunk/core/src/core/org/jnode/vm/isolate/VmIsolate.java trunk/core/src/core/org/jnode/vm/isolate/VmIsolateLocal.java trunk/core/src/core/org/jnode/vm/isolate/VmLink.java trunk/core/src/core/org/jnode/vm/isolate/VmStreamBindings.java trunk/core/src/core/org/jnode/vm/memmgr/GCStatistics.java trunk/core/src/core/org/jnode/vm/memmgr/HeapHelper.java trunk/core/src/core/org/jnode/vm/memmgr/HeapStatistics.java trunk/core/src/core/org/jnode/vm/memmgr/VmHeapManager.java trunk/core/src/core/org/jnode/vm/memmgr/VmWriteBarrier.java trunk/core/src/core/org/jnode/vm/memmgr/def/DefGCStatistics.java trunk/core/src/core/org/jnode/vm/memmgr/def/DefHeapStatistics.java trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultHeapManager.java trunk/core/src/core/org/jnode/vm/memmgr/def/DefaultWriteBarrier.java trunk/core/src/core/org/jnode/vm/memmgr/def/FinalizerThread.java trunk/core/src/core/org/jnode/vm/memmgr/def/FinalizerVisitor.java trunk/core/src/core/org/jnode/vm/memmgr/def/GCManager.java trunk/core/src/core/org/jnode/vm/memmgr/def/GCMarkVisitor.java trunk/core/src/core/org/jnode/vm/memmgr/def/GCSetWhiteVisitor.java trunk/core/src/core/org/jnode/vm/memmgr/def/GCStack.java trunk/core/src/core/org/jnode/vm/memmgr/def/GCSweepVisitor.java trunk/core/src/core/org/jnode/vm/memmgr/def/GCThread.java trunk/core/src/core/org/jnode/vm/memmgr/def/GCVerifyVisitor.java trunk/core/src/core/org/jnode/vm/memmgr/def/HeapStatisticsVisitor.java trunk/core/src/core/org/jnode/vm/memmgr/def/VmAbstractHeap.java trunk/core/src/core/org/jnode/vm/memmgr/def/VmBootHeap.java trunk/core/src/core/org/jnode/vm/memmgr/def/VmDefaultHeap.java trunk/core/src/core/org/jnode/vm/performance/PerformanceCounterEvent.java trunk/core/src/core/org/jnode/vm/performance/PerformanceCounters.java trunk/core/src/core/org/jnode/vm/performance/PresetEvent.java trunk/core/src/core/org/jnode/vm/scheduler/IRQManager.java trunk/core/src/core/org/jnode/vm/scheduler/IRQThread.java trunk/core/src/core/org/jnode/vm/scheduler/IdleThread.java trunk/core/src/core/org/jnode/vm/scheduler/KernelDebugger.java trunk/core/src/core/org/jnode/vm/scheduler/Monitor.java trunk/core/src/core/org/jnode/vm/scheduler/MonitorManager.java trunk/core/src/core/org/jnode/vm/scheduler/ProcessorLock.java trunk/core/src/core/org/jnode/vm/scheduler/SpinLock.java trunk/core/src/core/org/jnode/vm/scheduler/SystemThread.java trunk/core/src/core/org/jnode/vm/scheduler/VmProcessor.java trunk/core/src/core/org/jnode/vm/scheduler/VmScheduler.java trunk/core/src/core/org/jnode/vm/scheduler/VmThread.java trunk/core/src/core/org/jnode/vm/scheduler/VmThreadQueue.java trunk/core/src/core/org/jnode/vm/scheduler/VmThreadQueueEntry.java trunk/core/src/core/org/jnode/vm/scheduler/VmThreadVisitor.java trunk/core/src/core/org/jnode/vm/x86/GDT.java trunk/core/src/core/org/jnode/vm/x86/IOAPIC.java trunk/core/src/core/org/jnode/vm/x86/IOAPICRedirectionEntry.java trunk/core/src/core/org/jnode/vm/x86/LocalAPIC.java trunk/core/src/core/org/jnode/vm/x86/MMXMultiMediaSupport.java trunk/core/src/core/org/jnode/vm/x86/MPBusEntry.java trunk/core/src/core/org/jnode/vm/x86/MPConfigTable.java trunk/core/src/core/org/jnode/vm/x86/MPEntry.java trunk/core/src/core/org/jnode/vm/x86/MPFloatingPointerStructure.java trunk/core/src/core/org/jnode/vm/x86/MPIOAPICEntry.java trunk/core/src/core/org/jnode/vm/x86/MPIOInterruptAssignmentEntry.java trunk/core/src/core/org/jnode/vm/x86/MPInterruptAssignmentEntry.java trunk/core/src/core/org/jnode/vm/x86/MPLocalInterruptAssignmentEntry.java trunk/core/src/core/org/jnode/vm/x86/MPProcessorEntry.java trunk/core/src/core/org/jnode/vm/x86/MSR.java trunk/core/src/core/org/jnode/vm/x86/PIC8259A.java trunk/core/src/core/org/jnode/vm/x86/TSS32.java trunk/core/src/core/org/jnode/vm/x86/UnsafeX86.java trunk/core/src/core/org/jnode/vm/x86/VmX86Architecture.java trunk/core/src/core/org/jnode/vm/x86/VmX86Architecture32.java trunk/core/src/core/org/jnode/vm/x86/VmX86Architecture64.java trunk/core/src/core/org/jnode/vm/x86/VmX86Processor.java trunk/core/src/core/org/jnode/vm/x86/VmX86Processor32.java trunk/core/src/core/org/jnode/vm/x86/VmX86Processor64.java trunk/core/src/core/org/jnode/vm/x86/VmX86StackReader.java trunk/core/src/core/org/jnode/vm/x86/VmX86Thread.java trunk/core/src/core/org/jnode/vm/x86/VmX86Thread32.java trunk/core/src/core/org/jnode/vm/x86/VmX86Thread64.java trunk/core/src/core/org/jnode/vm/x86/X86Cpu.java trunk/core/src/core/org/jnode/vm/x86/X86CpuID.java trunk/core/src/core/org/jnode/vm/x86/X86IRQManager.java trunk/core/src/core/org/jnode/vm/x86/X86MemoryMapEntry.java trunk/core/src/core/org/jnode/vm/x86/X86Vendor.java trunk/core/src/core/org/jnode/vm/x86/compiler/AbstractX86Compiler.java trunk/core/src/core/org/jnode/vm/x86/compiler/AbstractX86StackManager.java trunk/core/src/core/org/jnode/vm/x86/compiler/BaseX86MagicHelper.java trunk/core/src/core/org/jnode/vm/x86/compiler/X86CompiledIMT.java trunk/core/src/core/org/jnode/vm/x86/compiler/X86CompilerConstants.java trunk/core/src/core/org/jnode/vm/x86/compiler/X86CompilerHelper.java trunk/core/src/core/org/jnode/vm/x86/compiler/X86IMTCompiler32.java trunk/core/src/core/org/jnode/vm/x86/compiler/X86IMTCompiler64.java trunk/core/src/core/org/jnode/vm/x86/compiler/X86JumpTable.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/DoubleItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/DoubleWordItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/EmitterContext.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/FPCompiler.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/FPCompilerFPU.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/FPCompilerSSE.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/FPUHelper.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/FPUStack.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/FloatItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/InlinedMethodInfo.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/IntItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/Item.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/ItemFactory.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/ItemStack.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/ItemVisitor.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/L1AHelper.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/LongItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/MagicHelper.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/RefItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/RegisterVisitor.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/VirtualStack.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/WordItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86GCMapIterator.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86Level1ACompiler.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86RegisterPool.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86StackFrame.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/DoubleItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/DoubleWordItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/EmitterContext.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/FPCompiler.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/FPCompilerFPU.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/FPCompilerSSE.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/FPUHelper.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/FPUStack.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/FloatItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/InlinedMethodInfo.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/IntItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/Item.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/ItemFactory.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/ItemStack.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/ItemVisitor.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/L1AHelper.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/LongItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/MagicHelper.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/RefItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/RegisterVisitor.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/VirtualStack.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/WordItem.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86BytecodeVisitor.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86GCMapIterator.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86Level1BCompiler.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86RegisterPool.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86StackFrame.java trunk/core/src/core/org/jnode/vm/x86/compiler/l2/GenericX86CodeGenerator.java trunk/core/src/core/org/jnode/vm/x86/compiler/l2/X86CodeGenerator.java trunk/core/src/core/org/jnode/vm/x86/compiler/l2/X86RegisterPool.java trunk/core/src/core/org/jnode/vm/x86/compiler/stub/EmptyGCMapIterator.java trunk/core/src/core/org/jnode/vm/x86/compiler/stub/X86StubCompiler.java trunk/core/src/core/org/jnode/vm/x86/performance/Athlon64PerformanceCounters.java trunk/core/src/core/org/jnode/vm/x86/performance/DualMSRPerformanceCounters.java trunk/core/src/core/org/jnode/vm/x86/performance/P4FamilyPerformanceCounters.java trunk/core/src/core/org/jnode/vm/x86/performance/P6PerformanceCouters.java trunk/core/src/core/org/jnode/vm/x86/performance/Pentium4PerformanceCounters.java trunk/core/src/core/org/jnode/vm/x86/performance/X86PerformanceCounters.java trunk/core/src/core/org/jnode/work/Work.java trunk/core/src/core/org/jnode/work/WorkManager.java trunk/core/src/core/org/jnode/work/WorkPlugin.java trunk/core/src/core/org/jnode/work/WorkUtils.java trunk/core/src/driver/org/jnode/driver/AbstractDeviceManager.java trunk/core/src/driver/org/jnode/driver/ApiNotFoundException.java trunk/core/src/driver/org/jnode/driver/Bus.java trunk/core/src/driver/org/jnode/driver/DefaultDeviceManager.java trunk/core/src/driver/org/jnode/driver/Device.java trunk/core/src/driver/org/jnode/driver/DeviceAPI.java trunk/core/src/driver/org/jnode/driver/DeviceAlreadyConnectedException.java trunk/core/src/driver/org/jnode/driver/DeviceAlreadyRegisteredException.java trunk/core/src/driver/org/jnode/driver/DeviceException.java trunk/core/src/driver/org/jnode/driver/DeviceFinder.java trunk/core/src/driver/org/jnode/driver/DeviceFinderPlugin.java trunk/core/src/driver/org/jnode/driver/DeviceInfoAPI.java trunk/core/src/driver/org/jnode/driver/DeviceListener.java trunk/core/src/driver/org/jnode/driver/DeviceManager.java trunk/core/src/driver/org/jnode/driver/DeviceManagerListener.java trunk/core/src/driver/org/jnode/driver/DeviceNotFoundException.java trunk/core/src/driver/org/jnode/driver/DeviceToDriverMapper.java trunk/core/src/driver/org/jnode/driver/DeviceUtils.java trunk/core/src/driver/org/jnode/driver/Driver.java trunk/core/src/driver/org/jnode/driver/DriverException.java trunk/core/src/driver/org/jnode/driver/DriverPermission.java trunk/core/src/driver/org/jnode/driver/DriverPlugin.java trunk/core/src/driver/org/jnode/driver/InvalidDriverException.java trunk/core/src/driver/org/jnode/driver/RemovableDeviceAPI.java trunk/core/src/driver/org/jnode/driver/bus/firewire/FireWireBus.java trunk/core/src/driver/org/jnode/driver/bus/firewire/FireWireDevice.java trunk/core/src/driver/org/jnode/driver/bus/firewire/FireWireDriver.java trunk/core/src/driver/org/jnode/driver/bus/pci/AGPCapability.java trunk/core/src/driver/org/jnode/driver/bus/pci/AbstractPCIDeviceToDriverMapper.java trunk/core/src/driver/org/jnode/driver/bus/pci/Capability.java trunk/core/src/driver/org/jnode/driver/bus/pci/CompactHotSwapCapability.java trunk/core/src/driver/org/jnode/driver/bus/pci/DeviceDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/pci/MSICapability.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIBaseAddress.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIBus.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIBusAPI.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIClassToDriverMapper.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIConstants.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIDescriptors.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIDevice.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIDeviceConfig.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIDeviceToDriverMapper.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIDriver.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIException.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIFinder.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIHeaderType0.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIHeaderType1.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIHeaderType2.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCIRomAddress.java trunk/core/src/driver/org/jnode/driver/bus/pci/PCI_IDs.java trunk/core/src/driver/org/jnode/driver/bus/pci/PMCapability.java trunk/core/src/driver/org/jnode/driver/bus/pci/SlotIDCapability.java trunk/core/src/driver/org/jnode/driver/bus/pci/VPDCapability.java trunk/core/src/driver/org/jnode/driver/bus/pci/VendorDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/pcmcia/CardBusBus.java trunk/core/src/driver/org/jnode/driver/bus/pcmcia/CardBusDevice.java trunk/core/src/driver/org/jnode/driver/bus/pcmcia/CardBusDriver.java trunk/core/src/driver/org/jnode/driver/bus/smbus/DIMM.java trunk/core/src/driver/org/jnode/driver/bus/smbus/DIMMDriver.java trunk/core/src/driver/org/jnode/driver/bus/smbus/SMBus.java trunk/core/src/driver/org/jnode/driver/bus/smbus/SMBusControler.java trunk/core/src/driver/org/jnode/driver/bus/smbus/SMBusDevice.java trunk/core/src/driver/org/jnode/driver/bus/usb/AbstractDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/usb/AbstractDeviceItem.java trunk/core/src/driver/org/jnode/driver/bus/usb/AbstractHostControllerDriver.java trunk/core/src/driver/org/jnode/driver/bus/usb/ConfigurationDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/usb/DeviceDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/usb/EndPointDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/usb/InterfaceDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/usb/SetupPacket.java trunk/core/src/driver/org/jnode/driver/bus/usb/StringDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/usb/StringDescriptorZero.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBBus.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBConfiguration.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBConstants.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBControlPipe.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBDataPipe.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBDevice.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBEndPoint.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBException.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBHostControllerAPI.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBHubAPI.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBHubMonitor.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBInterface.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBPacket.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBPipe.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBPipeListener.java trunk/core/src/driver/org/jnode/driver/bus/usb/USBRequest.java trunk/core/src/driver/org/jnode/driver/bus/usb/hub/HubDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/usb/hub/PortStatus.java trunk/core/src/driver/org/jnode/driver/bus/usb/hub/USBHubConstants.java trunk/core/src/driver/org/jnode/driver/bus/usb/hub/USBHubDeviceToDriverMapper.java trunk/core/src/driver/org/jnode/driver/bus/usb/hub/USBHubDriver.java trunk/core/src/driver/org/jnode/driver/bus/usb/spi/AbstractUSBControlRequest.java trunk/core/src/driver/org/jnode/driver/bus/usb/spi/AbstractUSBDataRequest.java trunk/core/src/driver/org/jnode/driver/bus/usb/spi/AbstractUSBRequest.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/AbstractStructure.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/AbstractTreeStructure.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/FrameList.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/QueueHead.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/Schedule.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/TransferDescriptor.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIConstants.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIControlPipe.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIControlRequest.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCICore.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIDataPipe.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIDataRequest.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIDriver.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIIO.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIPipe.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIPipeManager.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIRequest.java trunk/core/src/driver/org/jnode/driver/bus/usb/uhci/UHCIRootHub.java trunk/core/src/driver/org/jnode/driver/character/ChannelAlreadyOwnedException.java trunk/core/src/driver/org/jnode/driver/character/CharacterDeviceAPI.java trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i440BXDeviceToDriverMapper.java trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82371AB_ACPI.java trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82371AB_ACPI_SMBusControler.java trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82371AB_ISABridge.java trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82371AB_USBController.java trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82443BX_HostPCIBridge.java trunk/core/src/driver/org/jnode/driver/chipset/i440BX/i82443BX_PCIPCIBridge.java trunk/core/src/driver/org/jnode/driver/chipset/via/Via82C686.java trunk/core/src/driver/org/jnode/driver/chipset/via/Via8363_0.java trunk/core/src/driver/org/jnode/driver/chipset/via/ViaDeviceToDriverMapper.java trunk/core/src/driver/org/jnode/driver/chipset/via/ViaQuirks.java trunk/core/src/driver/org/jnode/driver/console/ActiveTextConsole.java trunk/core/src/driver/org/jnode/driver/console/CompletionInfo.java trunk/core/src/driver/org/jnode/driver/console/Console.java trunk/core/src/driver/org/jnode/driver/console/ConsoleEvent.java trunk/core/src/driver/org/jnode/driver/console/ConsoleException.java trunk/core/src/driver/org/jnode/driver/console/ConsoleListener.java trunk/core/src/driver/org/jnode/driver/console/ConsoleManager.java trunk/core/src/driver/org/jnode/driver/console/InputCompleter.java trunk/core/src/driver/org/jnode/driver/console/InputHistory.java trunk/core/src/driver/org/jnode/driver/console/KeyEventBindings.java trunk/core/src/driver/org/jnode/driver/console/ScrollableTextConsole.java trunk/core/src/driver/org/jnode/driver/console/TextConsole.java trunk/core/src/driver/org/jnode/driver/console/VirtualKey.java trunk/core/src/driver/org/jnode/driver/console/VirtualTextConsole.java trunk/core/src/driver/org/jnode/driver/console/spi/AbstractConsole.java trunk/core/src/driver/org/jnode/driver/console/spi/AbstractConsoleManager.java trunk/core/src/driver/org/jnode/driver/console/spi/ConsoleWriter.java trunk/core/src/driver/org/jnode/driver/console/textscreen/ConsoleKeyEventBindings.java trunk/core/src/driver/org/jnode/driver/console/textscreen/DefaultKeyboardHandler.java trunk/core/src/driver/org/jnode/driver/console/textscreen/KeyboardHandler.java trunk/core/src/driver/org/jnode/driver/console/textscreen/KeyboardReader.java trunk/core/src/driver/org/jnode/driver/console/textscreen/KeyboardReaderAction.java trunk/core/src/driver/org/jnode/driver/console/textscreen/Line.java trunk/core/src/driver/org/jnode/driver/console/textscreen/ScrollableTextScreenConsole.java trunk/core/src/driver/org/jnode/driver/console/textscreen/TextScreenConsole.java trunk/core/src/driver/org/jnode/driver/console/textscreen/TextScreenConsoleManager.java trunk/core/src/driver/org/jnode/driver/console/textscreen/TextScreenConsolePlugin.java trunk/core/src/driver/org/jnode/driver/input/AbstractInputDriver.java trunk/core/src/driver/org/jnode/driver/input/AbstractKeyboardDriver.java trunk/core/src/driver/org/jnode/driver/input/AbstractKeyboardInterpreter.java trunk/core/src/driver/org/jnode/driver/input/AbstractPointerDriver.java trunk/core/src/driver/org/jnode/driver/input/DeadKeyException.java trunk/core/src/driver/org/jnode/driver/input/Key.java trunk/core/src/driver/org/jnode/driver/input/KeyboardAPI.java trunk/core/src/driver/org/jnode/driver/input/KeyboardAPIAdapter.java trunk/core/src/driver/org/jnode/driver/input/KeyboardAdapter.java trunk/core/src/driver/org/jnode/driver/input/KeyboardConstants.java trunk/core/src/driver/org/jnode/driver/input/KeyboardEvent.java trunk/core/src/driver/org/jnode/driver/input/KeyboardInputPlugin.java trunk/core/src/driver/org/jnode/driver/input/KeyboardInterpreter.java trunk/core/src/driver/org/jnode/driver/input/KeyboardInterpreterException.java trunk/core/src/driver/org/jnode/driver/input/KeyboardLayoutManager.java trunk/core/src/driver/org/jnode/driver/input/KeyboardListener.java trunk/core/src/driver/org/jnode/driver/input/Keys.java trunk/core/src/driver/org/jnode/driver/input/LogitechProtocol.java trunk/core/src/driver/org/jnode/driver/input/LogitechWheelMouseProtocol.java trunk/core/src/driver/org/jnode/driver/input/MissingKeyboardInterpreterClassException.java trunk/core/src/driver/org/jnode/driver/input/MouseInterpreter.java trunk/core/src/driver/org/jnode/driver/input/MouseProtocolHandler.java trunk/core/src/driver/org/jnode/driver/input/PointerAPI.java trunk/core/src/driver/org/jnode/driver/input/PointerAPIAdapter.java trunk/core/src/driver/org/jnode/driver/input/PointerEvent.java trunk/core/src/driver/org/jnode/driver/input/PointerInterpreter.java trunk/core/src/driver/org/jnode/driver/input/PointerListener.java trunk/core/src/driver/org/jnode/driver/input/SystemListener.java trunk/core/src/driver/org/jnode/driver/input/SystemTriggerAPI.java trunk/core/src/driver/org/jnode/driver/input/SystemTriggerListener.java trunk/core/src/driver/org/jnode/driver/input/UnsupportedKeyException.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_BE_fr.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_CH_fr.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_DE.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_DK.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_DV.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_ES.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_FR.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_FR_fr.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_GB_en.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_HU.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_HU_101.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_HU_hu.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_HU_hu_101.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_IT.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_IT_it.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_NO.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_RU.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_SE.java trunk/core/src/driver/org/jnode/driver/input/l10n/KeyboardInterpreter_US_en.java trunk/core/src/driver/org/jnode/driver/serial/SerialPortAPI.java trunk/core/src/driver/org/jnode/driver/serial/SerialPortDriver.java trunk/core/src/driver/org/jnode/driver/serial/SerialPortFinder.java trunk/core/src/driver/org/jnode/driver/system/acpi/AcpiAPI.java trunk/core/src/driver/org/jnode/driver/system/acpi/AcpiDeviceToDriverMapper.java trunk/core/src/driver/org/jnode/driver/system/acpi/AcpiDriver.java trunk/core/src/driver/org/jnode/driver/system/acpi/AcpiSystemTable.java trunk/core/src/driver/org/jnode/driver/system/acpi/AcpiTable.java trunk/core/src/driver/org/jnode/driver/system/acpi/DifferentiatedSystemDescriptionTable.java trunk/core/src/driver/org/jnode/driver/system/acpi/ExtendedSystemDescriptionTable.java trunk/core/src/driver/org/jnode/driver/system/acpi/FirmwareAcpiControlStructure.java trunk/core/src/driver/org/jnode/driver/system/acpi/FixedAcpiDescriptionTable.java trunk/core/src/driver/org/jnode/driver/system/acpi/GenericAddress.java trunk/core/src/driver/org/jnode/driver/system/acpi/RSDP.java trunk/core/src/driver/org/jnode/driver/system/acpi/RootSystemDescriptionTable.java trunk/core/src/driver/org/jnode/driver/system/acpi/SystemDescriptionTable.java trunk/core/src/driver/org/jnode/driver/system/acpi/aml/Aml.java trunk/core/src/driver/org/jnode/driver/system/acpi/aml/AmlOpcode.java trunk/core/src/driver/org/jnode/driver/system/acpi/aml/NameString.java trunk/core/src/driver/org/jnode/driver/system/acpi/aml/ParseNode.java trunk/core/src/driver/org/jnode/driver/system/acpi/aml/Parser.java trunk/core/src/driver/org/jnode/driver/system/acpi/vm/AcpiInteger.java trunk/core/src/driver/org/jnode/driver/system/acpi/vm/AcpiNamedObject.java trunk/core/src/driver/org/jnode/driver/system/acpi/vm/AcpiObject.java trunk/core/src/driver/org/jnode/driver/system/acpi/vm/Buffer.java trunk/core/src/driver/org/jnode/driver/system/acpi/vm/ByteField.java trunk/core/src/driver/org/jnode/driver/system/acpi/vm/Device.java trunk/core/src/driver/org/jnode/driver/system/acpi/vm/NameSpace.java trunk/core/src/driver/org/jnode/driver/system/acpi/vm/Scope.java trunk/core/src/driver/org/jnode/driver/system/cmos/CMOSConstants.java trunk/core/src/driver/org/jnode/driver/system/cmos/CMOSService.java trunk/core/src/driver/org/jnode/driver/system/cmos/def/CMOS.java trunk/core/src/driver/org/jnode/driver/system/cmos/def/CMOSPlugin.java trunk/core/src/driver/org/jnode/driver/system/cmos/def/RTC.java trunk/core/src/driver/org/jnode/driver/system/firmware/AcpiDevice.java trunk/core/src/driver/org/jnode/driver/system/firmware/AcpiRSDPInfo.java trunk/core/src/driver/org/jnode/driver/system/firmware/FirmwareAPI.java trunk/core/src/driver/org/jnode/driver/system/firmware/bios/BiosDriver.java trunk/core/src/driver/org/jnode/driver/system/firmware/bios/BiosFinder.java trunk/core/src/driver/org/jnode/driver/system/pnp/PnP.java trunk/core/src/driver/org/jnode/driver/system/ram/RAMControler.java trunk/core/src/driver/org/jnode/driver/system/ram/RAMModuleCollection.java trunk/core/src/driver/org/jnode/driver/system/ram/RAMModuleInfo.java trunk/core/src/driver/org/jnode/driver/textscreen/ScrollableTextScreen.java trunk/core/src/driver/org/jnode/driver/textscreen/TextScreen.java trunk/core/src/driver/org/jnode/driver/textscreen/TextScreenManager.java trunk/core/src/driver/org/jnode/driver/textscreen/x86/AbstractPcBufferTextScreen.java trunk/core/src/driver/org/jnode/driver/textscreen/x86/AbstractPcTextScreen.java trunk/core/src/driver/org/jnode/driver/textscreen/x86/PcBufferTextScreen.java trunk/core/src/driver/org/jnode/driver/textscreen/x86/PcScrollableTextScreen.java trunk/core/src/driver/org/jnode/driver/textscreen/x86/PcTextScreen.java trunk/core/src/driver/org/jnode/driver/textscreen/x86/PcTextScreenManager.java trunk/core/src/driver/org/jnode/driver/textscreen/x86/PcTextScreenPlugin.java trunk/core/src/driver/org/jnode/driver/textscreen/x86/PcTextScreenUtils.java trunk/core/src/driver/org/jnode/driver/virtual/VirtualDevice.java trunk/core/src/driver/org/jnode/driver/virtual/VirtualDeviceDriver.java trunk/core/src/driver/org/jnode/driver/virtual/VirtualDeviceFactory.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/BaseMmtkGCStatistics.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/BaseMmtkHeapManager.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/genrc/GenRCStatistics.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/genrc/HeapManager.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/genrc/Plan.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/genrc/PlanConstants.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/ms/HeapManager.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/ms/MarkSweepStatistics.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/ms/Plan.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/ms/PlanConstants.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/nogc/HeapManager.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/nogc/NoGCStatistics.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/nogc/Plan.java trunk/core/src/mmtk-vm/org/jnode/vm/memmgr/mmtk/nogc/PlanConstants.java trunk/core/src/openjdk/vm/com/sun/java/util/jar/pack/NativeNativeUnpack.java trunk/core/src/openjdk/vm/com/sun/java/util/jar/pack/Pack200Command.java trunk/core/src/openjdk/vm/com/sun/java/util/jar/pack/Unpack200Command.java trunk/core/src/openjdk/vm/java/awt/NativeAWTEvent.java trunk/core/src/openjdk/vm/java/awt/NativeButton.java trunk/core/src/openjdk/vm/java/awt/NativeCheckbox.java trunk/core/src/openjdk/vm/java/awt/NativeCheckboxMenuItem.java trunk/core/src/openjdk/vm/java/awt/NativeColor.java trunk/core/src/openjdk/vm/java/awt/NativeComponent.java trunk/core/src/openjdk/vm/java/awt/NativeContainer.java trunk/core/src/openjdk/vm/java/awt/NativeDialog.java trunk/core/src/openjdk/vm/java/awt/NativeDimension.java trunk/core/src/openjdk/vm/java/awt/NativeEvent.java trunk/core/src/openjdk/vm/java/awt/NativeFileDialog.java trunk/core/src/openjdk/vm/java/awt/NativeFontMetrics.java trunk/core/src/openjdk/vm/java/awt/NativeFrame.java trunk/core/src/openjdk/vm/java/awt/NativeInsets.java trunk/core/src/openjdk/vm/java/awt/NativeKeyboardFocusManager.java trunk/core/src/openjdk/vm/java/awt/NativeLabel.java trunk/core/src/openjdk/vm/java/awt/NativeMenu.java trunk/core/src/openjdk/vm/java/awt/NativeMenuBar.java trunk/core/src/openjdk/vm/java/awt/NativeMenuComponent.java trunk/core/src/openjdk/vm/java/awt/NativeMenuItem.java trunk/core/src/openjdk/vm/java/awt/NativeRectangle.java trunk/core/src/openjdk/vm/java/awt/NativeScrollPane.java trunk/core/src/openjdk/vm/java/awt/NativeScrollPaneAdjustable.java trunk/core/src/openjdk/vm/java/awt/NativeScrollbar.java trunk/core/src/openjdk/vm/java/awt/NativeSplashScreen.java trunk/core/src/ope... [truncated message content] |
From: <ls...@us...> - 2010-01-03 11:09:34
|
Revision: 5708 http://jnode.svn.sourceforge.net/jnode/?rev=5708&view=rev Author: lsantha Date: 2010-01-03 11:09:20 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java trunk/cli/src/commands/org/jnode/command/archive/BZip.java trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java trunk/cli/src/commands/org/jnode/command/archive/GZip.java trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java trunk/cli/src/commands/org/jnode/command/archive/Zip.java trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java trunk/cli/src/commands/org/jnode/command/common/DateCommand.java trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java trunk/cli/src/commands/org/jnode/command/file/CatCommand.java trunk/cli/src/commands/org/jnode/command/file/CdCommand.java trunk/cli/src/commands/org/jnode/command/file/CpCommand.java trunk/cli/src/commands/org/jnode/command/file/CutCommand.java trunk/cli/src/commands/org/jnode/command/file/DFCommand.java trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java trunk/cli/src/commands/org/jnode/command/file/DirCommand.java trunk/cli/src/commands/org/jnode/command/file/DuCommand.java trunk/cli/src/commands/org/jnode/command/file/FindCommand.java trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java trunk/cli/src/commands/org/jnode/command/file/SortCommand.java trunk/cli/src/commands/org/jnode/command/file/TailCommand.java trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java trunk/cli/src/commands/org/jnode/command/file/WcCommand.java trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java trunk/cli/src/commands/org/jnode/command/net/PingCommand.java trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java trunk/cli/src/commands/org/jnode/command/system/GcCommand.java trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java trunk/cli/src/commands/org/jnode/command/system/IsolateCommand.java trunk/cli/src/commands/org/jnode/command/system/JavaCommand.java trunk/cli/src/commands/org/jnode/command/system/KdbCommand.java trunk/cli/src/commands/org/jnode/command/system/KillCommand.java trunk/cli/src/commands/org/jnode/command/system/LoadkeysCommand.java trunk/cli/src/commands/org/jnode/command/system/LocaleCommand.java trunk/cli/src/commands/org/jnode/command/system/Log4jCommand.java trunk/cli/src/commands/org/jnode/command/system/LsIRQCommand.java trunk/cli/src/commands/org/jnode/command/system/MemoryCommand.java trunk/cli/src/commands/org/jnode/command/system/NamespaceCommand.java trunk/cli/src/commands/org/jnode/command/system/OnHeapCommand.java trunk/cli/src/commands/org/jnode/command/system/PageCommand.java trunk/cli/src/commands/org/jnode/command/system/PluginCommand.java trunk/cli/src/commands/org/jnode/command/system/PrintEnvCommand.java trunk/cli/src/commands/org/jnode/command/system/RebootCommand.java trunk/cli/src/commands/org/jnode/command/system/RunCommand.java trunk/cli/src/commands/org/jnode/command/system/SetCommand.java trunk/cli/src/commands/org/jnode/command/system/SyntaxCommand.java trunk/cli/src/commands/org/jnode/command/system/TerminateCommand.java trunk/cli/src/commands/org/jnode/command/system/ThreadCommand.java trunk/cli/src/commands/org/jnode/command/system/VmInfoCommand.java trunk/cli/src/commands/org/jnode/command/util/AbstractDirectoryWalker.java trunk/cli/src/commands/org/jnode/command/util/IOUtils.java trunk/cli/src/commands/org/jnode/command/util/NumberRange.java Modified: trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/ArchiveCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.Closeable; Modified: trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/BUnzipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; /** Modified: trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/BZCatCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.archive; /** Modified: trunk/cli/src/commands/org/jnode/command/archive/BZip.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BZip.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/BZip.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/BZipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import org.jnode.shell.syntax.Argument; Modified: trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/GUnzipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; /** Modified: trunk/cli/src/commands/org/jnode/command/archive/GZip.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/GZip.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/GZip.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/GZipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import org.jnode.shell.syntax.Argument; Modified: trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/TarCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/UnzipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import org.jnode.shell.syntax.Argument; Modified: trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/ZCatCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; /** Modified: trunk/cli/src/commands/org/jnode/command/archive/Zip.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/Zip.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/Zip.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/archive/ZipCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.archive; import java.util.ArrayList; Modified: trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/argument/NumberListArgument.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/BasenameCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/DateCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/DateCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/DateCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/DirnameCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/EchoCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/EnvCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.common; import gnu.java.security.action.GetEnvAction; Modified: trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/ExitCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/ExprCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/FalseCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/HelpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/HistoryCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/SleepCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/TimeCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,22 +1,23 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * - * This library is distributed in the hope that it will be useful, but + * This library 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 Lesser General Public + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with this library; If not, write to the Free Software Foundation, Inc., + * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.common; import java.io.PrintWriter; Modified: trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/TrueCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/UnixTestCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/common/UptimeCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,22 +1,23 @@ /* - * $Id: UptimeCommand.java 4977 2009-02-02 09:09:41Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * - * This library is distributed in the hope that it will be useful, but + * This library 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 Lesser General Public + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with this library; If not, write to the Free Software Foundation, Inc., + * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.common; import java.io.PrintWriter; Modified: trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/CompileCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/DebugCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/DisassembleCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/RemoteOutputCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/dev/ant/AntCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/CatCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* - * $Id: CatCommand.java 4975 2009-02-02 08:30:52Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CdCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CdCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/CdCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/CpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/CutCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/CutCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/CutCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DFCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DFCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/DFCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/DeleteCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DirCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DirCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/DirCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/DuCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* - * $Id: DuCommand.java 4975 2009-02-02 08:30:52Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/file/FindCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/FindCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/FindCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* - * $Id: CdCommand.java 4975 2009-02-02 08:30:52Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/GrepCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/HeadCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import org.jnode.shell.AbstractCommand; Modified: trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/HexdumpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/Md5SumCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/MkdirCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/PasteCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.file; import java.io.BufferedReader; Modified: trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/PwdCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/SortCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/SortCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/SortCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,6 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/file/TailCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/TailCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/TailCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import org.jnode.shell.AbstractCommand; Modified: trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/TeeCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/TouchCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/file/WcCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/file/WcCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.file; import java.io.File; Modified: trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/ArpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/BootpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/DhcpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/IfconfigCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/NetstatCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/PingCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/PingCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/PingCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/ResolverCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/RouteCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/RpcInfoCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/TcpInoutCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/TftpCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/WLanCtlCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/net/WgetCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/AliasCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/BindKeysCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/ClassCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/ClasspathCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jnode.command.system; import java.io.PrintWriter; Modified: trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/CpuIDCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/GcCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/GcCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/GcCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java 2010-01-03 11:04:45 UTC (rev 5707) +++ trunk/cli/src/commands/org/jnode/command/system/HaltCommand.java 2010-01-03 11:09:20 UTC (rev 5708) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/cli/src/commands/org/jnode/command/system/Isolat... [truncated message content] |
From: <ls...@us...> - 2010-01-03 11:04:57
|
Revision: 5707 http://jnode.svn.sourceforge.net/jnode/?rev=5707&view=rev Author: lsantha Date: 2010-01-03 11:04:45 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/builder/src/builder/org/jnode/ant/taskdefs/AnnotateTask.java trunk/builder/src/builder/org/jnode/ant/taskdefs/Asm.java trunk/builder/src/builder/org/jnode/ant/taskdefs/FileSetTask.java trunk/builder/src/builder/org/jnode/ant/taskdefs/HeaderTask.java trunk/builder/src/builder/org/jnode/ant/taskdefs/Hotswap.java trunk/builder/src/builder/org/jnode/ant/taskdefs/Native2AsciiTask.java trunk/builder/src/builder/org/jnode/ant/taskdefs/NativeCheckTask.java trunk/builder/src/builder/org/jnode/ant/taskdefs/TemplateTask.java trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/BaseDirs.java trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/CompareTask.java trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/Flags.java trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/PackageDirectory.java trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/SourceFile.java trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/TargetedFileSet.java trunk/builder/src/builder/org/jnode/build/AbstractAsmConstBuilder.java trunk/builder/src/builder/org/jnode/build/AbstractBootImageBuilder.java trunk/builder/src/builder/org/jnode/build/AbstractPluginTask.java trunk/builder/src/builder/org/jnode/build/AbstractPluginsTask.java trunk/builder/src/builder/org/jnode/build/AddressFinder.java trunk/builder/src/builder/org/jnode/build/AsmSourceInfo.java trunk/builder/src/builder/org/jnode/build/BootDiskBuilder.java trunk/builder/src/builder/org/jnode/build/BootFloppyBuilder.java trunk/builder/src/builder/org/jnode/build/BuildException.java trunk/builder/src/builder/org/jnode/build/BuildObjectResolver.java trunk/builder/src/builder/org/jnode/build/FieldInfo.java trunk/builder/src/builder/org/jnode/build/InitJarBuilder.java trunk/builder/src/builder/org/jnode/build/InitJarsBuilder.java trunk/builder/src/builder/org/jnode/build/JNodeClassNotFoundException.java trunk/builder/src/builder/org/jnode/build/ObjectEmitter.java trunk/builder/src/builder/org/jnode/build/PluginList.java trunk/builder/src/builder/org/jnode/build/PluginTask.java trunk/builder/src/builder/org/jnode/build/VMwareBuilderTask.java trunk/builder/src/builder/org/jnode/build/dependencies/BCELDependencyChecker.java trunk/builder/src/builder/org/jnode/build/documentation/DotBuilder.java trunk/builder/src/builder/org/jnode/build/documentation/LicenseEntry.java trunk/builder/src/builder/org/jnode/build/documentation/PackageData.java trunk/builder/src/builder/org/jnode/build/documentation/PluginData.java trunk/builder/src/builder/org/jnode/build/documentation/PluginDocumentationTask.java trunk/builder/src/builder/org/jnode/build/documentation/ToolbarEntry.java trunk/builder/src/builder/org/jnode/build/natives/NativeStubGenerator.java trunk/builder/src/builder/org/jnode/build/packager/MainFinder.java trunk/builder/src/builder/org/jnode/build/packager/PackagerTask.java trunk/builder/src/builder/org/jnode/build/packager/PluginBuilder.java trunk/builder/src/builder/org/jnode/build/packager/PluginListInsertor.java trunk/builder/src/builder/org/jnode/build/packager/ScriptBuilder.java trunk/builder/src/builder/org/jnode/build/x86/AsmConstBuilder.java trunk/builder/src/builder/org/jnode/build/x86/BootImageBuilder.java trunk/builder/src/builder/org/jnode/build/x86/Disasm.java trunk/builder/src/builder/org/jnode/jnasm/JNAsm.java trunk/builder/src/builder/org/jnode/jnasm/assembler/Address.java trunk/builder/src/builder/org/jnode/jnasm/assembler/Assembler.java trunk/builder/src/builder/org/jnode/jnasm/assembler/AssemblerModule.java trunk/builder/src/builder/org/jnode/jnasm/assembler/HardwareSupport.java trunk/builder/src/builder/org/jnode/jnasm/assembler/Identifier.java trunk/builder/src/builder/org/jnode/jnasm/assembler/Instruction.java trunk/builder/src/builder/org/jnode/jnasm/assembler/InstructionUtils.java trunk/builder/src/builder/org/jnode/jnasm/assembler/PseudoInstructions.java trunk/builder/src/builder/org/jnode/jnasm/assembler/Register.java trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/AbstractX86Module.java trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/MMX.java trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/X86Core.java trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/X86Support.java trunk/builder/src/builder/org/jnode/jnasm/preprocessor/FileResolver.java trunk/builder/src/builder/org/jnode/jnasm/preprocessor/Macro.java trunk/builder/src/builder/org/jnode/jnasm/preprocessor/Preprocessor.java trunk/builder/src/builder/org/jnode/linker/Elf.java trunk/builder/src/builder/org/jnode/linker/ElfLinker.java trunk/builder/src/builder/org/jnode/linker/LoadUtil.java trunk/builder/src/builder/org/jnode/linker/Reloc.java trunk/builder/src/builder/org/jnode/linker/Reloca.java trunk/builder/src/builder/org/jnode/linker/Section.java trunk/builder/src/builder/org/jnode/linker/StoreUtil.java trunk/builder/src/builder/org/jnode/linker/StrTab.java trunk/builder/src/builder/org/jnode/linker/Symbol.java trunk/builder/src/builder/org/jnode/pluginlist/Main.java trunk/builder/src/builder/org/jnode/pluginlist/Plugin.java trunk/builder/src/builder/org/jnode/pluginlist/PluginList.java trunk/builder/src/builder/org/jnode/pluginlist/PluginListEditor.java trunk/builder/src/builder/org/jnode/pluginlist/PluginListModel.java trunk/builder/src/builder/org/jnode/pluginlist/PluginNode.java trunk/builder/src/builder/org/jnode/pluginlist/PluginRepository.java trunk/builder/src/builder/org/jnode/pluginlist/PluginTreePane.java trunk/builder/src/builder/org/jnode/pluginlist/Project.java trunk/builder/src/builder/org/jnode/pluginlist/ProjectNode.java trunk/builder/src/builder/org/jnode/pluginlist/RootNode.java trunk/builder/src/builder/org/jnode/pluginlist/Syncable.java Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/AnnotateTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/AnnotateTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/AnnotateTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/Asm.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/Asm.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/Asm.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/FileSetTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/FileSetTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/FileSetTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/HeaderTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/HeaderTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/HeaderTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/Hotswap.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/Hotswap.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/Hotswap.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/Native2AsciiTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/Native2AsciiTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/Native2AsciiTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/NativeCheckTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/NativeCheckTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/NativeCheckTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/TemplateTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/TemplateTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/TemplateTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/BaseDirs.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/BaseDirs.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/BaseDirs.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/CompareTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/CompareTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/CompareTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/Flags.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/Flags.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/Flags.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/PackageDirectory.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/PackageDirectory.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/PackageDirectory.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/SourceFile.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/SourceFile.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/SourceFile.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/TargetedFileSet.java =================================================================== --- trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/TargetedFileSet.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/ant/taskdefs/classpath/TargetedFileSet.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/AbstractAsmConstBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/AbstractAsmConstBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/AbstractAsmConstBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/AbstractBootImageBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/AbstractBootImageBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/AbstractBootImageBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/AbstractPluginTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/AbstractPluginTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/AbstractPluginTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/AbstractPluginsTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/AbstractPluginsTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/AbstractPluginsTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/AddressFinder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/AddressFinder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/AddressFinder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/AsmSourceInfo.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/AsmSourceInfo.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/AsmSourceInfo.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/BootDiskBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/BootDiskBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/BootDiskBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/BootFloppyBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/BootFloppyBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/BootFloppyBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/BuildException.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/BuildException.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/BuildException.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/BuildObjectResolver.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/BuildObjectResolver.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/BuildObjectResolver.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/FieldInfo.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/FieldInfo.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/FieldInfo.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/InitJarBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/InitJarBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/InitJarBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/InitJarsBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/InitJarsBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/InitJarsBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/JNodeClassNotFoundException.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/JNodeClassNotFoundException.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/JNodeClassNotFoundException.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/ObjectEmitter.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/ObjectEmitter.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/ObjectEmitter.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/PluginList.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/PluginList.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/PluginList.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/PluginTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/PluginTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/PluginTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/VMwareBuilderTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/VMwareBuilderTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/VMwareBuilderTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/dependencies/BCELDependencyChecker.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/dependencies/BCELDependencyChecker.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/dependencies/BCELDependencyChecker.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/documentation/DotBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/documentation/DotBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/documentation/DotBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/documentation/LicenseEntry.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/documentation/LicenseEntry.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/documentation/LicenseEntry.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/documentation/PackageData.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/documentation/PackageData.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/documentation/PackageData.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/documentation/PluginData.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/documentation/PluginData.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/documentation/PluginData.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/documentation/PluginDocumentationTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/documentation/PluginDocumentationTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/documentation/PluginDocumentationTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/documentation/ToolbarEntry.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/documentation/ToolbarEntry.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/documentation/ToolbarEntry.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/natives/NativeStubGenerator.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/natives/NativeStubGenerator.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/natives/NativeStubGenerator.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/packager/MainFinder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/packager/MainFinder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/packager/MainFinder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/packager/PackagerTask.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/packager/PackagerTask.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/packager/PackagerTask.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/packager/PluginBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/packager/PluginBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/packager/PluginBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/packager/PluginListInsertor.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/packager/PluginListInsertor.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/packager/PluginListInsertor.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/packager/ScriptBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/packager/ScriptBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/packager/ScriptBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/x86/AsmConstBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/x86/AsmConstBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/x86/AsmConstBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/x86/BootImageBuilder.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/x86/BootImageBuilder.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/x86/BootImageBuilder.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/build/x86/Disasm.java =================================================================== --- trunk/builder/src/builder/org/jnode/build/x86/Disasm.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/build/x86/Disasm.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/JNAsm.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/JNAsm.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/JNAsm.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/Address.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/Address.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/Address.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/Assembler.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/Assembler.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/Assembler.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/AssemblerModule.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/AssemblerModule.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/AssemblerModule.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/HardwareSupport.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/HardwareSupport.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/HardwareSupport.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/Identifier.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/Identifier.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/Identifier.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/Instruction.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/Instruction.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/Instruction.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/InstructionUtils.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/InstructionUtils.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/InstructionUtils.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/PseudoInstructions.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/PseudoInstructions.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/PseudoInstructions.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/Register.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/Register.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/Register.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/AbstractX86Module.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/AbstractX86Module.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/AbstractX86Module.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/MMX.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/MMX.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/MMX.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/X86Core.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/X86Core.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/X86Core.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/X86Support.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/X86Support.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/assembler/x86/X86Support.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/preprocessor/FileResolver.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/preprocessor/FileResolver.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/preprocessor/FileResolver.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/preprocessor/Macro.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/preprocessor/Macro.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/preprocessor/Macro.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/jnasm/preprocessor/Preprocessor.java =================================================================== --- trunk/builder/src/builder/org/jnode/jnasm/preprocessor/Preprocessor.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/jnasm/preprocessor/Preprocessor.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/linker/Elf.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/Elf.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/linker/Elf.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/linker/ElfLinker.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/ElfLinker.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/linker/ElfLinker.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/linker/LoadUtil.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/LoadUtil.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/linker/LoadUtil.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/linker/Reloc.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/Reloc.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/linker/Reloc.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/linker/Reloca.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/Reloca.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/linker/Reloca.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/linker/Section.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/Section.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/linker/Section.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/linker/StoreUtil.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/StoreUtil.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/linker/StoreUtil.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/linker/StrTab.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/StrTab.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/linker/StrTab.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/linker/Symbol.java =================================================================== --- trunk/builder/src/builder/org/jnode/linker/Symbol.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/linker/Symbol.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/builder/src/builder/org/jnode/pluginlist/Main.java =================================================================== --- trunk/builder/src/builder/org/jnode/pluginlist/Main.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/pluginlist/Main.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,3 +1,23 @@ +/* + * $Id$ + * + * Copyright (C) 2003-2010 JNode.org + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2.1 of the License, or + * (at your option) any later version. + * + * This library 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 Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library; If not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + package org.jnode.pluginlist; import java.io.File; Modified: trunk/builder/src/builder/org/jnode/pluginlist/Plugin.java =================================================================== --- trunk/builder/src/builder/org/jnode/pluginlist/Plugin.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/pluginlist/Plugin.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,3 +1,23 @@ +/* + * $Id$ + * + * Copyright (C) 2003-2010 JNode.org + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2.1 of the License, or + * (at your option) any later version. + * + * This library 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 Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library; If not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + package org.jnode.pluginlist; import java.util.Set; Modified: trunk/builder/src/builder/org/jnode/pluginlist/PluginList.java =================================================================== --- trunk/builder/src/builder/org/jnode/pluginlist/PluginList.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/pluginlist/PluginList.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,3 +1,23 @@ +/* + * $Id$ + * + * Copyright (C) 2003-2010 JNode.org + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2.1 of the License, or + * (at your option) any later version. + * + * This library 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 Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library; If not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + package org.jnode.pluginlist; import java.util.Properties; Modified: trunk/builder/src/builder/org/jnode/pluginlist/PluginListEditor.java =================================================================== --- trunk/builder/src/builder/org/jnode/pluginlist/PluginListEditor.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/pluginlist/PluginListEditor.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,3 +1,23 @@ +/* + * $Id$ + * + * Copyright (C) 2003-2010 JNode.org + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2.1 of the License, or + * (at your option) any later version. + * + * This library 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 Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library; If not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + package org.jnode.pluginlist; import javax.swing.JFrame; Modified: trunk/builder/src/builder/org/jnode/pluginlist/PluginListModel.java =================================================================== --- trunk/builder/src/builder/org/jnode/pluginlist/PluginListModel.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/pluginlist/PluginListModel.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,3 +1,23 @@ +/* + * $Id$ + * + * Copyright (C) 2003-2010 JNode.org + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2.1 of the License, or + * (at your option) any later version. + * + * This library 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 Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library; If not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + package org.jnode.pluginlist; /** Modified: trunk/builder/src/builder/org/jnode/pluginlist/PluginNode.java =================================================================== --- trunk/builder/src/builder/org/jnode/pluginlist/PluginNode.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/pluginlist/PluginNode.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,3 +1,23 @@ +/* + * $Id$ + * + * Copyright (C) 2003-2010 JNode.org + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2.1 of the License, or + * (at your option) any later version. + * + * This library 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 Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this library; If not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + package org.jnode.pluginlist; import javax.swing.tree.DefaultMutableTreeNode; Modified: trunk/builder/src/builder/org/jnode/pluginlist/PluginRepository.java =================================================================== --- trunk/builder/src/builder/org/jnode/pluginlist/PluginRepository.java 2010-01-03 10:57:12 UTC (rev 5706) +++ trunk/builder/src/builder/org/jnode/pluginlist/PluginRepository.java 2010-01-03 11:04:45 UTC (rev 5707) @@ -1,3 +1,23 @@ +/* + * $Id$ + * + * Copyright (C) 2003-2010 JNode.org + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation; either version 2.1 of the License, or + * (at your option) any later version. + * + * This library 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 Lesser General Public + * License for more detai... [truncated message content] |
From: <ls...@us...> - 2010-01-03 10:57:20
|
Revision: 5706 http://jnode.svn.sourceforge.net/jnode/?rev=5706&view=rev Author: lsantha Date: 2010-01-03 10:57:12 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java trunk/distr/src/apps/org/jawk/JawkMain.java trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java trunk/distr/src/apps/org/jnode/apps/debug/TC.java trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java trunk/distr/src/apps/org/jnode/apps/edit/Editor.java trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/BaseCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/Command.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandException.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessor.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessorListener.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandStatus.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/DeviceLabelizer.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/PartitionLabelizer.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Component.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/NumberField.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Options.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/YesNo.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/Bounded.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/Device.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/DeviceException.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacadeException.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSListener.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/Partition.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserListener.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/CommandProcessorView.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/Constants.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingErrorReporter.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AbstractAction.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AddPartitionAction.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/FormatPartitionAction.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/InitMbrAction.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/RemovePartitionAction.java trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleInputStream.java trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleOutputStream.java trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreenManager.java trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetServerCommand.java trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetUtils.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/ExtentDeclaration.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/IOUtils.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/RandomAccessFileReader.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/VMWareDisk.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/descriptor/AdapterType.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/descriptor/CreateType.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/descriptor/Descriptor.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/descriptor/DescriptorRW.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/descriptor/DiskDatabase.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/descriptor/Header.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/extent/Access.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/extent/Extent.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/extent/ExtentType.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/ExtentFactory.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/ExtentIO.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/FileDescriptor.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/IOHandler.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/UnsupportedFormatException.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/simple/SimpleDescriptorRW.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/simple/SimpleExtentFactory.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/simple/SimpleIOHandler.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/AllocationTable.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/AllocationTableRW.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/EntryArray.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/GrainDirectory.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/GrainTable.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseDescriptorRW.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseDiskFactory.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseExtent.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseExtentFactory.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseExtentHeader.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseExtentHeaderRW.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseExtentIO.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseExtentRW.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseFileDescriptor.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseIOHandler.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/tools/DiskCopier.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/tools/DiskFactory.java trunk/distr/src/emu/org/jnode/emu/EditEmu.java trunk/distr/src/emu/org/jnode/emu/ShellEmu.java trunk/distr/src/install/org/jnode/install/AbstractInstaller.java trunk/distr/src/install/org/jnode/install/ActionInput.java trunk/distr/src/install/org/jnode/install/ActionOutput.java trunk/distr/src/install/org/jnode/install/CopyFile.java trunk/distr/src/install/org/jnode/install/InputContext.java trunk/distr/src/install/org/jnode/install/InstallerAction.java trunk/distr/src/install/org/jnode/install/Main.java trunk/distr/src/install/org/jnode/install/OutputContext.java trunk/distr/src/install/org/jnode/install/ProgressAware.java trunk/distr/src/install/org/jnode/install/ProgressEvent.java trunk/distr/src/install/org/jnode/install/ProgressListener.java trunk/distr/src/install/org/jnode/install/ProgressSupport.java trunk/distr/src/install/org/jnode/install/ProgressiveAction.java trunk/distr/src/install/org/jnode/install/action/ActionConstants.java trunk/distr/src/install/org/jnode/install/action/CopyFilesAction.java trunk/distr/src/install/org/jnode/install/action/GrubInstallerAction.java trunk/distr/src/install/org/jnode/install/cmdline/CommandLineInstaller.java trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java trunk/distr/src/test/org/jnode/apps/jpartition/model/AbstractTest.java trunk/distr/src/test/org/jnode/apps/jpartition/model/AbstractTestDevice.java trunk/distr/src/test/org/jnode/apps/jpartition/model/CustomDevice.java trunk/distr/src/test/org/jnode/apps/jpartition/model/TestEmptyDevice.java trunk/distr/src/test/org/jnode/apps/jpartition/model/TestNonEmptyDevice.java trunk/distr/src/test/org/jnode/apps/jpartition/model/TestOSFacade.java trunk/distr/src/test/org/jnode/apps/jpartition/model/TestRemovePartitionFromDevice.java trunk/distr/src/test/org/jnode/apps/jpartition/swingview/FileDeviceView.java trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/AbstractIDEDevice.java trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/DeviceUtils.java trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/FakeIDEDevice.java trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/FileIDEDevice.java trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/FileIDEDeviceDriver.java trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/VMWareIDEDevice.java trunk/distr/src/test/org/jnode/apps/vmware/disk/test/BaseTest.java trunk/distr/src/test/org/jnode/apps/vmware/disk/test/TestCreation.java trunk/distr/src/test/org/jnode/apps/vmware/disk/test/Utils.java trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/BaseReadWriteTest.java trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/TestHeader.java trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/TestVMWareDisk.java Modified: trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java =================================================================== --- trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jawk/JawkMain.java =================================================================== --- trunk/distr/src/apps/org/jawk/JawkMain.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jawk/JawkMain.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -17,7 +17,7 @@ * along with this library; If not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ - + package org.jawk; import java.io.IOException; Modified: trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/debug/TC.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/TC.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/debug/TC.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/edit/Editor.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/edit/Editor.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/edit/Editor.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/BaseCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/BaseCommand.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/BaseCommand.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/Command.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/Command.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/Command.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandException.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandException.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandException.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessor.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessor.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessor.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessorListener.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessorListener.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessorListener.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandStatus.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandStatus.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandStatus.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/DeviceLabelizer.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/DeviceLabelizer.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/DeviceLabelizer.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/PartitionLabelizer.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/PartitionLabelizer.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/PartitionLabelizer.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Component.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Component.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Component.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/NumberField.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/NumberField.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/NumberField.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Options.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Options.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Options.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/YesNo.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/YesNo.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/YesNo.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/Bounded.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/Bounded.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/Bounded.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/Device.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/Device.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/Device.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/DeviceException.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/DeviceException.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/DeviceException.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacadeException.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacadeException.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacadeException.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSListener.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSListener.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSListener.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/Partition.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/Partition.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/Partition.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserListener.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserListener.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserListener.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/CommandProcessorView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/CommandProcessorView.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/CommandProcessorView.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/Constants.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/Constants.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/Constants.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingErrorReporter.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingErrorReporter.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingErrorReporter.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AbstractAction.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AbstractAction.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AbstractAction.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AddPartitionAction.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AddPartitionAction.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AddPartitionAction.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/FormatPartitionAction.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/FormatPartitionAction.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/FormatPartitionAction.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/InitMbrAction.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/InitMbrAction.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/InitMbrAction.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/RemovePartitionAction.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/RemovePartitionAction.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/RemovePartitionAction.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleInputStream.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleInputStream.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleInputStream.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleOutputStream.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleOutputStream.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleOutputStream.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java 2010-01-03 10:46:56 UTC (rev 5705) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java 2010-01-03 10:57:12 UTC (rev 5706) @@ -1,7 +1,7 @@ /* * $Id$ ... [truncated message content] |
From: <ls...@us...> - 2010-01-03 10:47:02
|
Revision: 5705 http://jnode.svn.sourceforge.net/jnode/?rev=5705&view=rev Author: lsantha Date: 2010-01-03 10:46:56 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Updated file headers. Modified Paths: -------------- trunk/distr/src/apps/org/jnode/games/boxworld/BoxWorld.java trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java trunk/distr/src/apps/org/jnode/games/tetris/Tetris.java trunk/distr/src/apps/org/jnode/games/tetris/package-info.java Modified: trunk/distr/src/apps/org/jnode/games/boxworld/BoxWorld.java =================================================================== --- trunk/distr/src/apps/org/jnode/games/boxworld/BoxWorld.java 2010-01-02 09:31:33 UTC (rev 5704) +++ trunk/distr/src/apps/org/jnode/games/boxworld/BoxWorld.java 2010-01-03 10:46:56 UTC (rev 5705) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java =================================================================== --- trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java 2010-01-02 09:31:33 UTC (rev 5704) +++ trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java 2010-01-03 10:46:56 UTC (rev 5705) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/games/tetris/Tetris.java =================================================================== --- trunk/distr/src/apps/org/jnode/games/tetris/Tetris.java 2010-01-02 09:31:33 UTC (rev 5704) +++ trunk/distr/src/apps/org/jnode/games/tetris/Tetris.java 2010-01-03 10:46:56 UTC (rev 5705) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published Modified: trunk/distr/src/apps/org/jnode/games/tetris/package-info.java =================================================================== --- trunk/distr/src/apps/org/jnode/games/tetris/package-info.java 2010-01-02 09:31:33 UTC (rev 5704) +++ trunk/distr/src/apps/org/jnode/games/tetris/package-info.java 2010-01-03 10:46:56 UTC (rev 5705) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2009 JNode.org + * Copyright (C) 2003-2010 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-02 09:31:40
|
Revision: 5704 http://jnode.svn.sourceforge.net/jnode/?rev=5704&view=rev Author: lsantha Date: 2010-01-02 09:31:33 +0000 (Sat, 02 Jan 2010) Log Message: ----------- Codestyle fixes. Modified Paths: -------------- trunk/cli/src/commands/org/jnode/command/file/DuCommand.java trunk/core/src/core/org/jnode/vm/VmMagic.java trunk/core/src/core/org/jnode/vm/classmgr/ObjectLayout.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86BytecodeVisitor.java trunk/fs/src/fs/org/jnode/fs/service/def/FileSystemAPIImpl.java trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Core.java Modified: trunk/cli/src/commands/org/jnode/command/file/DuCommand.java =================================================================== --- trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2009-12-30 21:12:17 UTC (rev 5703) +++ trunk/cli/src/commands/org/jnode/command/file/DuCommand.java 2010-01-02 09:31:33 UTC (rev 5704) @@ -48,38 +48,52 @@ public class DuCommand extends AbstractCommand { private static final String HELP_SUPER = - "With no arguments, `du' reports the disk space for the current directory. Normally the disk space is printed in units of 1024 bytes, but this can be overridden"; + "With no arguments, `du' reports the disk space for the current directory. Normally the disk space is " + + "printed in units of 1024 bytes, but this can be overridden"; private static final String HELP_DIR = "directory to start printing sizes recursively"; private static final String HELP_ALL = "Show counts for all files, not just directories."; private static final String HELP_BLOCK_SIZE_1 = "Print sizes in bytes, overriding the default block size"; private static final String HELP_TOTAL = - "Print a grand total of all arguments after all arguments have been processed. This can be used to find out the total disk usage of a given set of files or directories."; + "Print a grand total of all arguments after all arguments have been processed. This can be used to " + + "find out the total disk usage of a given set of files or directories."; private static final String HELP_DEREF_ARGS = - "Dereference symbolic links that are command line arguments. Does not affect other symbolic links. This is helpful for finding out the disk usage of directories, such as `/usr/tmp', which are often symbolic links. (not implemented"; + "Dereference symbolic links that are command line arguments. Does not affect other symbolic links. " + + "This is helpful for finding out the disk usage of directories, such as `/usr/tmp', " + + "which are often symbolic links. (not implemented"; private static final String HELP_HUMAN_READABLE_1024 = - "Append a size letter such as `M' for megabytes to each size. Powers of 1024 are used, not 1000; `M' stands for 1,048,576 bytes. Use the `-H' or `--si' option if you prefer powers of 1000."; + "Append a size letter such as `M' for megabytes to each size. Powers of 1024 are used, not 1000; " + + "`M' stands for 1,048,576 bytes. Use the `-H' or `--si' option if you prefer powers of 1000."; private static final String HELP_HUMAN_READABLE_1000 = - "Append a size letter such as `M' for megabytes to each size. (SI is the International System of Units, which defines these letters as prefixes.) Powers of 1000 are used, not 1024; `M' stands for 1,000,000 bytes. Use the `-h' or `--human-readable' option if you prefer powers of 1024."; + "Append a size letter such as `M' for megabytes to each size. (SI is the International System of Units, " + + "which defines these letters as prefixes.) Powers of 1000 are used, not 1024; " + + "`M' stands for 1,000,000 bytes. Use the `-h' or `--human-readable' option if you prefer " + + "powers of 1024."; private static final String HELP_BLOCK_SIZE_1024 = "Print sizes in 1024-byte blocks, overriding the default block size"; private static final String HELP_COUNT_LINKS = "Count the size of all files, even if they have appeared already (as a hard link). (not implemented"; private static final String HELP_DEREF = - "Dereference symbolic links (show the disk space used by the file or directory that the link points to instead of the space used by the link). (not implemented"; + "Dereference symbolic links (show the disk space used by the file or directory that the link points to " + + "instead of the space used by the link). (not implemented"; private static final String HELP_MAX_DEPTH = - "Show the total for each directory (and file if -all) that is at most MAX_DEPTH levels down from the root of the hierarchy. The root is at level 0, so `du --max-depth=0' is equivalent to `du -s'. (not tested)"; + "Show the total for each directory (and file if -all) that is at most MAX_DEPTH levels down " + + "from the root of the hierarchy. The root is at level 0, so `du --max-depth=0' is equivalent " + + "to `du -s'. (not tested)"; private static final String HELP_BLOCK_SIZE_1024x1024 = "Print sizes in megabyte (that is, 1,048,576-byte) blocks."; private static final String HELP_SUM = "Display only a total for each argument."; private static final String HELP_SEPERATE_DIRS = "Report the size of each directory separately, not including the sizes of subdirectories."; private static final String HELP_ONE_FS = - "Skip directories that are on different filesystems from the one that the argument being processed is on. (not implemented)"; + "Skip directories that are on different filesystems from the one that the argument " + + "being processed is on. (not implemented)"; private static final String HELP_EXCLUDE = - "When recursing, skip subdirectories or files matching PAT. For example, `du --exclude='*.o'' excludes files whose names end in `.o'. (not tested)"; + "When recursing, skip subdirectories or files matching PAT. For example, `du --exclude='*.o'' " + + "excludes files whose names end in `.o'. (not tested)"; private static final String HELP_EXCLUDE_FROM = - "Like `--exclude', except take the patterns to exclude from FILE, one per line. If FILE is `-', take the patterns from standard input. (not implemented)"; + "Like `--exclude', except take the patterns to exclude from FILE, one per line. If FILE is `-', " + + "take the patterns from standard input. (not implemented)"; private static final String HELP_BLOCK_SIZE_CUSTOM = "Print sizes in the user defined block size, overriding the default block size"; private static final String HELP_FS_BLOCK_SIZE = Modified: trunk/core/src/core/org/jnode/vm/VmMagic.java =================================================================== --- trunk/core/src/core/org/jnode/vm/VmMagic.java 2009-12-30 21:12:17 UTC (rev 5703) +++ trunk/core/src/core/org/jnode/vm/VmMagic.java 2010-01-02 09:31:33 UTC (rev 5704) @@ -36,7 +36,8 @@ * Methods in this class can also be called from inside JNode. * * @author Ewout Prangsma (ep...@us...) - * @see {@link org.jnode.vm.compiler.BaseMagicHelper.MagicClass} to get the list of "magic" classes (including this class). + * @see {@link org.jnode.vm.compiler.BaseMagicHelper.MagicClass} to get the list of "magic" classes + * (including this class). * @see {@link org.jnode.vm.compiler.BaseMagicHelper.MagicMethod} to get the list of "magic" methods. */ @MagicPermission Modified: trunk/core/src/core/org/jnode/vm/classmgr/ObjectLayout.java =================================================================== --- trunk/core/src/core/org/jnode/vm/classmgr/ObjectLayout.java 2009-12-30 21:12:17 UTC (rev 5703) +++ trunk/core/src/core/org/jnode/vm/classmgr/ObjectLayout.java 2010-01-02 09:31:33 UTC (rev 5704) @@ -21,7 +21,6 @@ package org.jnode.vm.classmgr; import org.jnode.annotation.Inline; -import org.jnode.vm.VmArchitecture; /** * <description> @@ -32,19 +31,21 @@ /** * The offset of the flags of an object from the start of the object. This - * value must be multiplied by {@link VmArchitecture#getReferenceSize() SLOT_SIZE} to get the offset in bytes. + * value must be multiplied by {@link org.jnode.vm.VmArchitecture#getReferenceSize() SLOT_SIZE} + * to get the offset in bytes. */ public static final int FLAGS_SLOT = -2; /** * The offset of the TIB of an object from the start of the object. This - * value must be multiplied by {@link VmArchitecture#getReferenceSize() SLOT_SIZE} to get the offset in bytes. + * value must be multiplied by {@link org.jnode.vm.VmArchitecture#getReferenceSize() SLOT_SIZE} + * to get the offset in bytes. */ public static final int TIB_SLOT = -1; /** * The size of the header of an object. This value must be multiplied by - * {@link VmArchitecture#getReferenceSize() SLOT_SIZE} to get the size in bytes. + * {@link org.jnode.vm.VmArchitecture#getReferenceSize() SLOT_SIZE} to get the size in bytes. */ public static final int HEADER_SLOTS = 2; Modified: trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java =================================================================== --- trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java 2009-12-30 21:12:17 UTC (rev 5703) +++ trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java 2010-01-02 09:31:33 UTC (rev 5704) @@ -73,7 +73,8 @@ /** * Actual converter from bytecodes to X86 native code. Uses a virtual stack to - * delay item emission, as described in the <a href="http://orp.sourceforge.net/">Open Runtime Platform (ORP)</a> project. + * delay item emission, as described in the <a href="http://orp.sourceforge.net/">Open Runtime Platform (ORP)</a> + * project. * * @author Ewout Prangsma (ep...@us...) * @author Patrik Reali Modified: trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86BytecodeVisitor.java =================================================================== --- trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86BytecodeVisitor.java 2009-12-30 21:12:17 UTC (rev 5703) +++ trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86BytecodeVisitor.java 2010-01-02 09:31:33 UTC (rev 5704) @@ -74,7 +74,8 @@ /** * Actual converter from bytecodes to X86 native code. Uses a virtual stack to - * delay item emission, as described in the <a href="http://orp.sourceforge.net/">Open Runtime Platform (ORP)</a> project. + * delay item emission, as described in the <a href="http://orp.sourceforge.net/">Open Runtime Platform (ORP)</a> + * project. * * @author Ewout Prangsma (ep...@us...) * @author Patrik Reali Modified: trunk/fs/src/fs/org/jnode/fs/service/def/FileSystemAPIImpl.java =================================================================== --- trunk/fs/src/fs/org/jnode/fs/service/def/FileSystemAPIImpl.java 2009-12-30 21:12:17 UTC (rev 5703) +++ trunk/fs/src/fs/org/jnode/fs/service/def/FileSystemAPIImpl.java 2010-01-02 09:31:33 UTC (rev 5704) @@ -280,7 +280,7 @@ // never include the parent directory and the current directory in // the result if they exist by any chance. - if (".".equals(name) || "..".equals(name)){ + if (".".equals(name) || "..".equals(name)) { continue; } Modified: trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Core.java =================================================================== --- trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Core.java 2009-12-30 21:12:17 UTC (rev 5703) +++ trunk/net/src/driver/org/jnode/driver/net/eepro100/EEPRO100Core.java 2010-01-02 09:31:33 UTC (rev 5704) @@ -177,7 +177,7 @@ for (y = 0, x = 0, sum = 0; x < eeSize; x++) { int value = doEepromCmd((eeReadCmd | (x << 16)), 27); eeprom[x] = value; - sum += (short)value; + sum += (short) value; if (x < 3) { hwAddrArr[y++] = (byte) value; hwAddrArr[y++] = (byte) (value >> 8); @@ -407,7 +407,7 @@ regs.setReg16(SCBeeprom, EE_ENB); eepromDelay(2); regs.setReg16(SCBeeprom, (EE_ENB & ~EE_CS)); - return NumberUtils.toUnsigned((short)retVal); + return NumberUtils.toUnsigned((short) retVal); } // --- OTHER METHODS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |