From: <cr...@us...> - 2008-11-09 09:41:14
|
Revision: 4687 http://jnode.svn.sourceforge.net/jnode/?rev=4687&view=rev Author: crawley Date: 2008-11-09 09:41:09 +0000 (Sun, 09 Nov 2008) Log Message: ----------- Tracking API changes. Modified Paths: -------------- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java trunk/distr/src/install/org/jnode/install/action/GrubInstallerAction.java trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2008-11-09 08:08:19 UTC (rev 4686) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2008-11-09 09:41:09 UTC (rev 4687) @@ -1,6 +1,8 @@ package org.jnode.apps.jpartition.commands; import java.io.IOException; +import java.io.OutputStreamWriter; +import java.io.PrintWriter; import org.jnode.apps.jpartition.commands.framework.BaseCommand; import org.jnode.apps.jpartition.commands.framework.CommandException; @@ -24,7 +26,7 @@ protected final PartitionHelper createPartitionHelper() throws CommandException { try { //FIXME replace System.out by output stream from (Console)ViewFactory - return new PartitionHelper(device, System.out); + return new PartitionHelper(device, new PrintWriter(new OutputStreamWriter(System.out))); } catch (DeviceNotFoundException e) { throw new CommandException(e); } catch (ApiNotFoundException e) { Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2008-11-09 08:08:19 UTC (rev 4686) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2008-11-09 09:41:09 UTC (rev 4687) @@ -1,5 +1,8 @@ package org.jnode.apps.jpartition.commands; +import java.io.OutputStreamWriter; +import java.io.PrintWriter; + import org.jnode.apps.jpartition.commands.framework.CommandException; import org.jnode.driver.bus.ide.IDEDevice; import org.jnode.partitions.command.PartitionHelper; @@ -15,7 +18,7 @@ PartitionHelper helper; try { //FIXME replace System.out by output stream from (Console)ViewFactory - helper = new PartitionHelper(device, System.out); + helper = new PartitionHelper(device, new PrintWriter(new OutputStreamWriter(System.out))); helper.initMbr(); } catch (Throwable t) { throw new CommandException(t); Modified: trunk/distr/src/install/org/jnode/install/action/GrubInstallerAction.java =================================================================== --- trunk/distr/src/install/org/jnode/install/action/GrubInstallerAction.java 2008-11-09 08:08:19 UTC (rev 4686) +++ trunk/distr/src/install/org/jnode/install/action/GrubInstallerAction.java 2008-11-09 09:41:09 UTC (rev 4687) @@ -3,6 +3,9 @@ */ package org.jnode.install.action; +import java.io.OutputStreamWriter; +import java.io.PrintWriter; + import org.jnode.driver.Device; import org.jnode.driver.DeviceUtils; import org.jnode.fs.jfat.command.JGrub; @@ -27,7 +30,7 @@ inContext.getStringInput("Enter the installation disk device name (example: hda0) : "); Device disk = DeviceUtils.getDevice(deviceID); - JGrub jgrub = new JGrub(System.out, System.err, disk); + JGrub jgrub = new JGrub(new PrintWriter(new OutputStreamWriter(System.out)), disk); inContext.setStringValue(ActionConstants.INSTALL_ROOT_DIR, jgrub.getMountPoint()); return AbstractInstaller.Step.forth; Modified: trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java 2008-11-09 08:08:19 UTC (rev 4686) +++ trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java 2008-11-09 09:41:09 UTC (rev 4687) @@ -1,5 +1,8 @@ package org.jnode.apps.jpartition; +import java.io.OutputStreamWriter; +import java.io.PrintWriter; + import junit.framework.TestSuite; import org.jnode.apps.jpartition.consoleview.ConsoleViewFactory; @@ -41,7 +44,7 @@ // DeviceUtils.createFakeDevice(new ErrorReporter()); AbstractIDEDevice dev = DeviceUtils.createFileDevice(); - JGrub jgrub = new JGrub(System.out, System.err, dev); + JGrub jgrub = new JGrub(new PrintWriter(new OutputStreamWriter(System.out)), dev); jgrub.install(); JPartitionCommand.main(args); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2009-02-01 23:22:15
|
Revision: 4965 http://jnode.svn.sourceforge.net/jnode/?rev=4965&view=rev Author: lsantha Date: 2009-02-01 22:00:25 +0000 (Sun, 01 Feb 2009) Log Message: ----------- Fixed headers. Modified Paths: -------------- trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.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/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 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 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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 fi.iki.elonen; import java.io.BufferedReader; Modified: trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.charvabsh; import bsh.ConsoleInterface; Modified: trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,6 +1,24 @@ /* - * $Id$ + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.commander; import charva.awt.BorderLayout; Modified: trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.console; import java.awt.event.WindowAdapter; Modified: trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.debug; import charvax.swing.JLabel; Modified: trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.debug; import charva.awt.Dimension; Modified: trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.debug; import java.lang.reflect.Field; Modified: trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.debug; import java.lang.reflect.Method; Modified: trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.debug; import java.lang.reflect.Field; Modified: trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.debug; import java.util.Collection; Modified: trunk/distr/src/apps/org/jnode/apps/debug/TC.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/TC.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/debug/TC.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.debug; import charva.awt.BorderLayout; Modified: trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,6 +1,24 @@ /* - * $Id$ + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.derby; Modified: trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.edit; import java.io.File; Modified: trunk/distr/src/apps/org/jnode/apps/edit/Editor.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/edit/Editor.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/edit/Editor.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.edit; import charva.awt.BorderLayout; Modified: trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.editor; import java.io.File; Modified: trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,6 +1,24 @@ /* - * $Id$ + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.editor; import java.io.File; Modified: trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.editor; import java.awt.event.KeyEvent; Modified: trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -2,7 +2,7 @@ * $Id$ * * JNode.org - * Copyright (C) 2003-2006 JNode.org + * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published @@ -18,7 +18,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.apps.httpd; import java.io.File; Modified: trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,6 +1,24 @@ /* - * $Id$ + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jetty; import java.io.File; Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,32 +1,53 @@ -package org.jnode.apps.jpartition; - -import java.io.BufferedReader; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.PrintStream; - -public class Context { - private final BufferedReader in; - private final PrintStream out; - private final ErrorReporter errorReporter; - - public Context(InputStream in, PrintStream out, ErrorReporter errorReporter) { - InputStreamReader r = new InputStreamReader(in); - this.in = new BufferedReader(r); - - this.out = out; - this.errorReporter = errorReporter; - } - - public final PrintStream getOut() { - return out; - } - - public final BufferedReader getIn() { - return in; - } - - public final ErrorReporter getErrorReporter() { - return errorReporter; - } -} +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition; + +import java.io.BufferedReader; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.PrintStream; + +public class Context { + private final BufferedReader in; + private final PrintStream out; + private final ErrorReporter errorReporter; + + public Context(InputStream in, PrintStream out, ErrorReporter errorReporter) { + InputStreamReader r = new InputStreamReader(in); + this.in = new BufferedReader(r); + + this.out = out; + this.errorReporter = errorReporter; + } + + public final PrintStream getOut() { + return out; + } + + public final BufferedReader getIn() { + return in; + } + + public final ErrorReporter getErrorReporter() { + return errorReporter; + } +} Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition; import org.apache.log4j.Logger; Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition; import org.jnode.apps.jpartition.model.UserFacade; Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition; import java.io.InputStream; Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition; public interface ViewFactory { Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands; import java.io.IOException; Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands; import org.jnode.apps.jpartition.commands.framework.CommandException; Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands; import org.jnode.apps.jpartition.commands.framework.CommandException; Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands; import org.jnode.apps.jpartition.commands.framework.CommandException; Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands; import java.io.OutputStreamWriter; Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands; import org.jnode.apps.jpartition.commands.framework.CommandException; 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 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/BaseCommand.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands.framework; import org.apache.log4j.Logger; 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 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/Command.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands.framework; public interface Command { 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 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandException.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands.framework; public class CommandException extends Exception { 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 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessor.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands.framework; import java.util.ArrayList; 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 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessorListener.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands.framework; public interface CommandProcessorListener { 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 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandStatus.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,3 +1,24 @@ +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.commands.framework; public enum CommandStatus { Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,27 +1,48 @@ -package org.jnode.apps.jpartition.consoleview; - -import java.io.PrintStream; - -import org.jnode.apps.jpartition.ErrorReporter; - -/** - * - * @author Fabien Duminy - * - */ -class ConsoleErrorReporter extends ErrorReporter { - private final PrintStream err; - - ConsoleErrorReporter(PrintStream err) { - this.err = err; - } - - protected void displayError(Object source, String message) { - StringBuilder sb = new StringBuilder(); - if (source != null) { - sb.append('[').append(String.valueOf(source)).append("] "); - } - sb.append(message); - err.println(sb.toString()); - } -} +/* + * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * + * JNode.org + * Copyright (C) 2003-2009 JNode.org + * + * This 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.apps.jpartition.consoleview; + +import java.io.PrintStream; + +import org.jnode.apps.jpartition.ErrorReporter; + +/** + * + * @author Fabien Duminy + * + */ +class ConsoleErrorReporter extends ErrorReporter { + private final PrintStream err; + + ConsoleErrorReporter(PrintStream err) { + this.err = err; + } + + protected void displayError(Object source, String message) { + StringBuilder sb = new StringBuilder(); + if (source != null) { + sb.append('[').append(String.valueOf(source)).append("] "); + } + sb.append(message); + err.println(sb.toString()); + } +} Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2009-02-01 21:50:49 UTC (rev 4964) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2009-02-01 22:00:25 UTC (rev 4965) @@ -1,183 +1,204 @@ -package org.jnode.apps.jpartition.consoleview; - -import java.io.IOException; -import java.io.InputStream; -import java.io.PrintStream; -import java.util.List; - -import org.apache.log4j.Logger; -import org.jnode.apps.jpartition.Context; -import org.jnode.apps.jpartition.ErrorReporter; -import org.jnode.apps.jpartition.commands.framework.Command; -import org.jnode.apps.jpartition.consoleview.components.Component; -import org.jnode.apps.jpartition.consoleview.components.NumberField; -import org.jnode.apps.jpartition.consoleview.components.Options; -import org.jnode.apps.jpartition.consoleview.components.YesNo; -import org.jnode.apps.jpartition.model.Device; -import org.jnode.apps.jpartition.model.Partition; -import org.jnode.apps.jpartition.model.UserFacade; - -class ConsoleView extends Component { - private static final Logger log = Logger.getLogger(ConsoleView.class); - - private final boolean install; - private Partiti... [truncated message content] |
From: <ls...@us...> - 2009-02-02 08:44:01
|
Revision: 4976 http://jnode.svn.sourceforge.net/jnode/?rev=4976&view=rev Author: lsantha Date: 2009-02-02 08:43:50 +0000 (Mon, 02 Feb 2009) Log Message: ----------- Fixed header. Modified Paths: -------------- trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.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/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 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/debug/TC.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/TC.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/debug/TC.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/edit/Editor.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/edit/Editor.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/edit/Editor.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/BaseCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/Command.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandException.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessor.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessorListener.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandStatus.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/DeviceLabelizer.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/DeviceLabelizer.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/DeviceLabelizer.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/PartitionLabelizer.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/PartitionLabelizer.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/PartitionLabelizer.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Component.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/NumberField.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Options.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/YesNo.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/Bounded.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/Bounded.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/Bounded.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/Device.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/Device.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/Device.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/DeviceException.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/DeviceException.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/DeviceException.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacadeException.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacadeException.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacadeException.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSListener.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSListener.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSListener.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/Partition.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/Partition.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/Partition.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserListener.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserListener.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserListener.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/CommandProcessorView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/CommandProcessorView.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/CommandProcessorView.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/Constants.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/Constants.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/Constants.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingErrorReporter.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingErrorReporter.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingErrorReporter.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AbstractAction.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AddPartitionAction.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/FormatPartitionAction.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/InitMbrAction.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it 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 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/RemovePartitionAction.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleInputStream.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleInputStream.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleInputStream.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleOutputStream.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleOutputStream.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleOutputStream.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreenManager.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreenManager.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreenManager.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetServerCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetServerCommand.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetServerCommand.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetUtils.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetUtils.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetUtils.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/vmware/disk/ExtentDeclaration.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/vmware/disk/ExtentDeclaration.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/vmware/disk/ExtentDeclaration.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/vmware/disk/IOUtils.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/vmware/disk/IOUtils.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/vmware/disk/IOUtils.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/vmware/disk/RandomAccessFileReader.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/vmware/disk/RandomAccessFileReader.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/vmware/disk/RandomAccessFileReader.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/vmware/disk/VMWareDisk.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/vmware/disk/VMWareDisk.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/vmware/disk/VMWareDisk.java 2009-02-02 08:43:50 UTC (rev 4976) @@ -1,7 +1,6 @@ /* - * $Id: header.txt 2224 2006-01-01 12:49:03Z epr $ + * $Id$ * - * JNode.org * Copyright (C) 2003-2009 JNode.org * * This library is free software; you can redistribute it and/or modify it Modified: trunk/distr/src/apps/org/jnode/apps/vmware/disk/descriptor/AdapterType.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/vmware/disk/descriptor/AdapterType.java 2009-02-02 08:30:52 UTC (rev 4975) +++ trunk/distr/src/apps/org/jnode/apps/vmware/disk/descriptor/AdapterType.java 2009-02-02 08:43:50 UTC (rev 497... [truncated message content] |
From: <fd...@us...> - 2009-02-28 12:52:54
|
Revision: 5069 http://jnode.svn.sourceforge.net/jnode/?rev=5069&view=rev Author: fduminy Date: 2009-02-28 12:45:32 +0000 (Sat, 28 Feb 2009) Log Message: ----------- added javadoc Modified Paths: -------------- 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/RemoteConsoleManager.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/games/rubik/Rubik.java trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/DeviceUtils.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/org/jnode/apps/telnetd/JNodeCommandShell.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -39,12 +39,18 @@ // this.shell = shell; // } + /** + * Construct a JNode command shell for the telnet daemon. + */ public JNodeCommandShell(TextConsole cons, JNodeShell shell) throws ShellException { super(cons); this.shell = shell; System.err.println("JNodeCommandShell"); } + /** + * Exit the JNode command shell for the telnet daemon. + */ @Override public void exit() { shell.close(); Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeShell.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -57,7 +57,7 @@ // private Editfield m_EF; /** - * Method that runs a shell + * Method that runs a shell. * * @param con Connection that runs the shell. */ @@ -244,7 +244,10 @@ } } - // this implements the ConnectionListener! + /** + * this implements the ConnectionListener! + * @param ce + */ public void connectionTimedOut(ConnectionEvent ce) { try { terminalIO.write("CONNECTION_TIMEDOUT"); @@ -257,6 +260,9 @@ } }// connectionTimedOut + /** + * @param ce + */ public void connectionIdle(ConnectionEvent ce) { try { terminalIO.write("CONNECTION_IDLE"); @@ -267,6 +273,9 @@ }// connectionIdle + /** + * @param ce + */ public void connectionLogoutRequest(ConnectionEvent ce) { try { terminalIO.write("CONNECTION_LOGOUTREQUEST"); @@ -277,6 +286,9 @@ } }// connectionLogout + /** + * @param ce + */ public void connectionSentBreak(ConnectionEvent ce) { try { terminalIO.write("CONNECTION_BREAK"); @@ -287,6 +299,10 @@ } }// connectionSentBreak + /** + * Create a Shell instance for JNode telnet daemon. + * @return + */ public static Shell createShell() { return new JNodeShell(); }// createShell Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteConsoleManager.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -39,11 +39,21 @@ private final RemoteTextScreenManager textScreenManager; private TerminalIO terminalIO; + /** + * Construct a manager for remote consoles. + * + * @throws ConsoleException + */ public RemoteConsoleManager() throws ConsoleException { super(); this.textScreenManager = new RemoteTextScreenManager(); } + /** + * Define the actual terminal. + * + * @param terminalIO + */ public void setTerminalIO(TerminalIO terminalIO) { this.terminalIO = terminalIO; } Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteKeyboardHandler.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -36,6 +36,11 @@ public class RemoteKeyboardHandler extends KeyboardHandler { private final RemoteKeyBoardEventReader kbReader; + /** + * Construct a remote keyboard handler for the given terminal. + * + * @param terminalIO + */ public RemoteKeyboardHandler(BasicTerminalIO terminalIO) { System.err.println("RemoteKeyboardHandler"); @@ -43,6 +48,9 @@ kbReader.start(); } + /** + * {@inheritDoc} + */ @Override public void close() throws IOException { kbReader.close(); Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreen.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -38,6 +38,11 @@ private final char[] buffer; private int cursorOffset; + /** + * Construct a remote text screen for the given terminal. + * + * @param terminalIO + */ public RemoteTextScreen(TerminalIO terminalIO) { super(terminalIO.getColumns(), terminalIO.getRows()); this.terminalIO = terminalIO; @@ -67,24 +72,39 @@ sync(0, buffer.length); } + /** + * {@inheritDoc} + */ public void copyContent(int srcOffset, int destOffset, int length) { System.arraycopy(buffer, srcOffset * 2, buffer, destOffset * 2, length * 2); sync(destOffset * 2, length * 2); } + /** + * {@inheritDoc} + */ public void copyTo(TextScreen dst, int offset, int length) { // TODO Auto-generated method stub } + /** + * {@inheritDoc} + */ public char getChar(int offset) { return buffer[offset]; } + /** + * {@inheritDoc} + */ public int getColor(int offset) { return 0; } + /** + * {@inheritDoc} + */ public void set(int offset, char ch, int count, int color) { buffer[offset] = getCharacter(ch); sync(offset, 1); @@ -95,6 +115,9 @@ return (c == 0) ? ' ' : c; } + /** + * {@inheritDoc} + */ public void set(int offset, char[] ch, int chOfs, int length, int color) { char[] cha = new char[ch.length]; for (int i = 0; i < cha.length; i++) { @@ -104,10 +127,16 @@ sync(offset, length); } + /** + * {@inheritDoc} + */ public void set(int offset, char[] ch, int chOfs, int length, int[] colors, int colorsOfs) { set(offset, ch, chOfs, length, 0); } + /** + * {@inheritDoc} + */ public int setCursor(int x, int y) { try { terminalIO.setCursor(y, x); @@ -119,11 +148,17 @@ return cursorOffset; } + /** + * {@inheritDoc} + */ public int setCursorVisible(boolean visible) { // ignore : cursor will allways be visible return cursorOffset; } + /** + * {@inheritDoc} + */ public void sync(int offset, int length) { try { final int y = offset / getWidth(); Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreenManager.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreenManager.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/RemoteTextScreenManager.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -28,6 +28,7 @@ import org.jnode.driver.textscreen.TextScreenManager; /** + * Implementation of the {@link TextScreenManager} interface for the telnet daemon. * * @author Fabien DUMINY (fduminy at jnode.org) * @@ -37,6 +38,10 @@ new HashMap<TerminalIO, RemoteTextScreen>(); private TerminalIO terminalIO; + /** + * Define the actual terminal used to sent textscreen data. + * @param terminalIO + */ public void setTerminalIO(TerminalIO terminalIO) { this.terminalIO = terminalIO; } Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetServerCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetServerCommand.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetServerCommand.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -26,11 +26,17 @@ import net.wimpi.telnetd.TelnetD; /** + * This is the command used to start the telnet daemon. * * @author Fabien DUMINY (fduminy at jnode.org) * */ public class TelnetServerCommand { + /** + * Main method. + * @param args not used + * @throws Exception + */ public static void main(String[] args) throws Exception { try { // 1. prepare daemon Modified: trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetUtils.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetUtils.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/TelnetUtils.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -24,8 +24,23 @@ import net.wimpi.telnetd.io.TerminalIO; +/** + * Utility methods for the telnet daemon. + * + * @author Fabien DUMINY (fd...@jn...) + * + */ public class TelnetUtils { + /** + * Write a buffer to the given terminal. + * + * @param terminalIO the terminal to which buffer data should be sent. + * @param b the buffer + * @param off offset of the first byte to get from the buffer + * @param len number of bytes to get from the buffer + * @throws IOException + */ public static void write(TerminalIO terminalIO, byte[] b, int off, int len) throws IOException { int offset = off; for (int i = 0; i < len; i++) { @@ -36,6 +51,13 @@ } } + /** + * Write a buffer to the given terminal. + * + * @param terminalIO the terminal to which buffer data should be sent. + * @param b the buffer + * @throws IOException + */ public static void write(TerminalIO terminalIO, byte[] b) throws IOException { terminalIO.getTelnetIO().write(b); if (terminalIO.isAutoflushing()) { Modified: trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java =================================================================== --- trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -19,10 +19,6 @@ */ package org.jnode.games.rubik; -// Rubik's Cube 3D simulator -// Karl H\u00f6rnell, March 11 1996 -// Last modified October 6 -// Adapted to JNode by Levente S\u00e1ntha import java.awt.AWTEvent; import java.awt.BorderLayout; @@ -39,6 +35,13 @@ import javax.swing.JFrame; import javax.swing.SwingUtilities; +/** + * Rubik's Cube 3D simulator. + * Adapted to JNode by Levente S\u00e1ntha. + * + * @author Karl H\u00f6rnell, March 11 1996 (Last modified October 6) + * + */ public final class Rubik extends JComponent { int i, j, k, n, o, p, q, lastX, lastY, dx, dy; int rectX[], rectY[]; @@ -71,6 +74,9 @@ Graphics offGraphics; Image offImage; + /** + * Initialization of the component. + */ public void init() { enableEvents(AWTEvent.KEY_EVENT_MASK); setFocusable(true); @@ -140,7 +146,10 @@ repaint(); } - // Convert hexadecimal RGB parameter to color + /** + * Convert hexadecimal RGB parameter to color + * @return + */ public Color findBGColor() { int hex[]; String s, h = "0123456789abcdef"; @@ -160,18 +169,40 @@ // Various vector manipulation functions + /** + * + */ public double scalProd(double v1[], int ix1, double v2[], int ix2) { return v1[ix1] * v2[ix2] + v1[ix1 + 1] * v2[ix2 + 1] + v1[ix1 + 2] * v2[ix2 + 2]; } + /** + * + * @param v + * @param ix + * @return + */ public double vNorm(double v[], int ix) { return m.sqrt(v[ix] * v[ix] + v[ix + 1] * v[ix + 1] + v[ix + 2] * v[ix + 2]); } + /** + * + * @param v1 + * @param ix1 + * @param v2 + * @param ix2 + * @return + */ public double cosAng(double v1[], int ix1, double v2[], int ix2) { return scalProd(v1, ix1, v2, ix2) / (vNorm(v1, ix1) * vNorm(v2, ix2)); } + /** + * + * @param v + * @param ix + */ public void normalize(double v[], int ix) { double t = vNorm(v, ix); v[ix] = v[ix] / t; @@ -179,30 +210,66 @@ v[ix + 2] = v[ix + 2] / t; } + /** + * + * @param v + * @param ix + * @param a + */ public void scalMult(double v[], int ix, double a) { v[ix] = v[ix] * a; v[ix + 1] = v[ix + 1] * a; v[ix + 2] = v[ix + 2] * a; } + /** + * + * @param v1 + * @param ix1 + * @param v2 + * @param ix2 + */ public void addVec(double v1[], int ix1, double v2[], int ix2) { v2[ix2] += v1[ix1]; v2[ix2 + 1] += v1[ix1 + 1]; v2[ix2 + 2] += v1[ix1 + 2]; } + /** + * + * @param v1 + * @param ix1 + * @param v2 + * @param ix2 + */ public void subVec(double v1[], int ix1, double v2[], int ix2) { v2[ix2] -= v1[ix1]; v2[ix2 + 1] -= v1[ix1 + 1]; v2[ix2 + 2] -= v1[ix1 + 2]; } + /** + * + * @param v1 + * @param ix1 + * @param v2 + * @param ix2 + */ public void copyVec(double v1[], int ix1, double v2[], int ix2) { v2[ix2] = v1[ix1]; v2[ix2 + 1] = v1[ix1 + 1]; v2[ix2 + 2] = v1[ix1 + 2]; } + /** + * + * @param v1 + * @param ix1 + * @param v2 + * @param ix2 + * @param v3 + * @param ix3 + */ public void vecProd(double v1[], int ix1, double v2[], int ix2, double v3[], int ix3) { v3[ix3] = v1[ix1 + 1] * v2[ix2 + 2] - v1[ix1 + 2] * v2[ix2 + 1]; @@ -210,7 +277,9 @@ v3[ix3 + 2] = v1[ix1] * v2[ix2 + 1] - v1[ix1 + 1] * v2[ix2]; } - // Produce large and small sub-cube for twisting + /** + * Produce large and small sub-cube for twisting + */ public void cutUpCube() { boolean check; // Copy main coordinate data @@ -285,6 +354,11 @@ } } + /** + * + * @param key + * @return + */ public boolean keyPressed(int key) { // Restore if (key == 114) { @@ -304,6 +378,12 @@ return false; } + /** + * + * @param x + * @param y + * @return + */ public boolean mouseDragged(int x, int y) { boolean check; double x1, x2, y1, y2, alpha, beta; @@ -377,6 +457,12 @@ return false; } + /** + * + * @param x + * @param y + * @return + */ public boolean mousePressed(int x, int y) { lastX = x; lastY = y; @@ -384,6 +470,12 @@ return false; } + /** + * + * @param x + * @param y + * @return + */ public boolean mouseReleased(int x, int y) { int quads; double qu; @@ -410,7 +502,11 @@ return false; } - // Shift colored fields + /** + * Shift colored fields + * @param sideNum + * @param quads + */ public void colorTwist(int sideNum, int quads) { int i, j, k, l = 0; k = quads * 2; // quads = number of 90-degree multiples @@ -472,6 +568,9 @@ } } + /** + * + */ public void paintComponent(Graphics g) { dragReg = 0; if (offGraphics == null) { @@ -542,11 +641,22 @@ g.drawImage(offImage, 0, 0, this); } + /** + * + */ public void update(Graphics g) { paint(g); } - // Draw cube or sub-cube + /** + * Draw cube or sub-cube. + * @param beye + * @param beX + * @param beY + * @param bcorners + * @param bblocks + * @param mode + */ public void fixBlock(double beye[], double beX[], double beY[], double bcorners[], int bblocks[], int mode) { copyVec(beye, 0, light, 0); @@ -666,6 +776,10 @@ } } + /** + * + * @param argv + */ public static void main(String[] argv) { JFrame f = new JFrame("Rubik's Cube"); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Modified: trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/DeviceUtils.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/DeviceUtils.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/test/org/jnode/apps/jpartition/utils/device/DeviceUtils.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -40,11 +40,15 @@ import org.jnode.fs.service.FileSystemService; import org.jnode.fs.service.def.FileSystemPlugin; import org.jnode.emu.naming.BasicNameSpace; +import org.jnode.emu.plugin.model.DummyConfigurationElement; +import org.jnode.emu.plugin.model.DummyExtension; +import org.jnode.emu.plugin.model.DummyExtensionPoint; import org.jnode.emu.plugin.model.DummyPluginDescriptor; import org.jnode.naming.InitialNaming; import org.jnode.naming.NameSpace; import org.jnode.plugin.PluginDescriptor; import org.jnode.test.fs.driver.stubs.StubDeviceManager; +import org.jnode.test.fs.filesystem.config.FSType; import org.jnode.util.OsUtils; public class DeviceUtils { @@ -57,15 +61,32 @@ if (!OsUtils.isJNode() && !coreInitialized) { try { - // ShellEmu.main(new String[0]); - NameSpace namespace = new BasicNameSpace(); - InitialNaming.setNameSpace(namespace); - - InitialNaming.bind(DeviceManager.NAME, StubDeviceManager.INSTANCE); - - PluginDescriptor desc = new DummyPluginDescriptor(true); +// // ShellEmu.main(new String[0]); +// NameSpace namespace = new BasicNameSpace(); +// InitialNaming.setNameSpace(namespace); +// +// InitialNaming.bind(DeviceManager.NAME, StubDeviceManager.INSTANCE); +// +// PluginDescriptor desc = new DummyPluginDescriptor(true); +// FileSystemService fss = new FileSystemPlugin(desc); +// namespace.bind(FileSystemService.class, fss); + + // Build a plugin descriptor that is sufficient for the FileSystemPlugin to + // configure file system types for testing. + DummyPluginDescriptor desc = new DummyPluginDescriptor(true); + DummyExtensionPoint ep = new DummyExtensionPoint("types", "org.jnode.fs.types", "types"); + desc.addExtensionPoint(ep); + for (FSType fsType : FSType.values()) { + DummyExtension extension = new DummyExtension(); + DummyConfigurationElement element = new DummyConfigurationElement(); + element.addAttribute("class", fsType.getFsTypeClass().getName()); + extension.addElement(element); + ep.addExtension(extension); + } + FileSystemService fss = new FileSystemPlugin(desc); - namespace.bind(FileSystemService.class, fss); + InitialNaming.bind(FileSystemService.class, fss); + } catch (NameAlreadyBoundException e) { throw new RuntimeException(e); } catch (NamingException e) { Modified: trunk/distr/src/test/org/jnode/apps/vmware/disk/test/BaseTest.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/vmware/disk/test/BaseTest.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/test/org/jnode/apps/vmware/disk/test/BaseTest.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -27,7 +27,7 @@ import org.junit.Before; /** - * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare) + * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare). * * @author Fabien DUMINY (fduminy at jnode dot org) * @@ -38,11 +38,20 @@ protected final boolean copyDisk; protected File diskFile; + /** + * + * @param diskFile + * @param copyDisk + */ public BaseTest(File diskFile, boolean copyDisk) { this.originalDiskFile = diskFile; this.copyDisk = copyDisk; } + /** + * + * @throws IOException + */ @Before public void setUp() throws IOException { this.diskFile = @@ -50,12 +59,19 @@ : originalDiskFile; } + /** + * + * @throws IOException + */ @After public void tearDown() throws IOException { Utils.clearTempDir(true); Utils.DO_CLEAR = true; } + /** + * + */ @Override public String toString() { return diskFile.getName(); Modified: trunk/distr/src/test/org/jnode/apps/vmware/disk/test/TestCreation.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/vmware/disk/test/TestCreation.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/test/org/jnode/apps/vmware/disk/test/TestCreation.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -25,7 +25,7 @@ import org.junit.Test; /** - * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare) + * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare). * * @author Fabien DUMINY (fduminy at jnode dot org) * @@ -33,10 +33,18 @@ public class TestCreation extends BaseTest { private static final Logger LOG = Logger.getLogger(TestCreation.class); + /** + * + * @throws IOException + */ public TestCreation() throws IOException { super(Utils.createTempFile("create"), false); } + /** + * + * @throws Exception + */ @Test public void createSparseDisk() throws Exception { Modified: trunk/distr/src/test/org/jnode/apps/vmware/disk/test/Utils.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/vmware/disk/test/Utils.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/test/org/jnode/apps/vmware/disk/test/Utils.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -25,7 +25,7 @@ import org.apache.log4j.Logger; /** - * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare) + * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare). * * @author Fabien DUMINY (fduminy at jnode dot org) * @@ -42,8 +42,16 @@ private static long SEQ_NUMBER = 0L; + /** + * Should we clear the temporary directory ? + */ public static boolean DO_CLEAR = true; + /** + * Create a temporary directory that will be used to store VMware disks. + * @return the temporary directory + * @throws IOException + */ public static File createTempDir() throws IOException { if (!TEMP_DIR_FILE.exists()) { if (!TEMP_DIR_FILE.mkdir()) { @@ -56,11 +64,23 @@ return TEMP_DIR_FILE; } + /** + * Create a temporary file in the temporary created (if needed) by {@link #createTempDir()}. + * @param prefix for the temporary file + * @return + * @throws IOException + */ public static File createTempFile(String prefix) throws IOException { File tmpDir = createTempDir(); return new File(tmpDir, String.valueOf(prefix) + SEQ_NUMBER++); } + /** + * Clean the temporary directory. + * + * @param deleteDir true to also delete the temporary directory. + * @throws IOException + */ public static void clearTempDir(boolean deleteDir) throws IOException { if (!DO_CLEAR) return; Modified: trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/BaseReadWriteTest.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/BaseReadWriteTest.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/BaseReadWriteTest.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -42,7 +42,7 @@ import org.junit.runners.Parameterized.Parameters; /** - * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare) + * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare). * * @author Fabien DUMINY (fduminy at jnode dot org) * @@ -81,6 +81,11 @@ System.out.println("\ndirectory for package " + DISKS_PACKAGE + " : " + DISKS_PATH); } + /** + * Get the set of data to use for the read & write tests. + * + * @return + */ @Parameters public static List<File[]> data() { File directory = new File(DISKS_PATH); @@ -103,10 +108,19 @@ return list; } + /** + * Construct a test class for a VMware disk stored in a file. + * @param diskFile file used to store the VMware disk + * @throws IOException + */ public BaseReadWriteTest(File diskFile) throws IOException { super(diskFile, true); } + /** + * Do a read test. + * @throws Exception + */ @Test @Ignore public void read() throws Exception { @@ -118,6 +132,10 @@ Assert.assertEquals(toString() + ": buffer should be filled", 0, data.remaining()); } + /** + * Do a write test. + * @throws Exception + */ @Test @Ignore public void write() throws Exception { @@ -129,6 +147,10 @@ Assert.assertEquals(toString() + ": buffer should be fully copied", 0, data.remaining()); } + /** + * Do a write & read test. + * @throws Exception + */ @Test public void writeAndRead() throws Exception { Utils.DO_CLEAR = false; Modified: trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/TestHeader.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/TestHeader.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/TestHeader.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -30,7 +30,7 @@ import org.junit.Test; /** - * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare) + * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare). * * @author Fabien DUMINY (fduminy at jnode dot org) * @@ -38,22 +38,36 @@ public class TestHeader extends BaseReadWriteTest { private static final Logger LOG = Logger.getLogger(TestHeader.class); + /** + * Construct a test class for a VMware disk headers stored in a file. + * @param diskFile file to use for the VMware disk. + * @throws IOException + */ public TestHeader(File diskFile) throws IOException { super(diskFile); } + /** + * Do a read test on VMware disk headers. + */ @Test public void read() throws Exception { VMWareDisk disk = new VMWareDisk(diskFile); disk.flush(); } + /** + * Do a write test on VMware disk headers. + */ @Test public void write() throws Exception { VMWareDisk disk = new VMWareDisk(diskFile); disk.flush(); } + /** + * Do a write and read test on VMware disk headers. + */ @Test public void writeAndRead() throws Exception { Utils.DO_CLEAR = false; Modified: trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/TestVMWareDisk.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/TestVMWareDisk.java 2009-02-28 11:52:19 UTC (rev 5068) +++ trunk/distr/src/test/org/jnode/apps/vmware/disk/test/readwrite/TestVMWareDisk.java 2009-02-28 12:45:32 UTC (rev 5069) @@ -35,7 +35,7 @@ import org.junit.Ignore; /** - * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare) + * Wrote from the 'Virtual Disk Format 1.0' specifications (from VMWare). * * @author Fabien DUMINY (fduminy at jnode dot org) * @@ -43,10 +43,18 @@ public class TestVMWareDisk extends BaseReadWriteTest { private static final Logger LOG = Logger.getLogger(TestVMWareDisk.class); + /** + * Construct a test class for a VMware disk stored in a file. + * @param diskFile file used to store the VMware disk + * @throws IOException + */ public TestVMWareDisk(File diskFile) throws IOException { super(diskFile); } + /** + * Do read test. + */ @Test public void read() throws Exception { VMWareDisk disk = new VMWareDisk(diskFile); @@ -57,6 +65,9 @@ Assert.assertEquals(toString() + ": buffer should be filled", 0, data.remaining()); } + /** + * Do a write test. + */ @Test @Ignore public void write() throws Exception { @@ -68,6 +79,9 @@ Assert.assertEquals(toString() + ": buffer should be fully copied", 0, data.remaining()); } + /** + * Do writes, just followed by reads on the same file. + */ @Test @Ignore public void writeAndRead() throws Exception { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fd...@us...> - 2009-05-02 10:29:37
|
Revision: 5383 http://jnode.svn.sourceforge.net/jnode/?rev=5383&view=rev Author: fduminy Date: 2009-05-02 10:29:31 +0000 (Sat, 02 May 2009) Log Message: ----------- Use of Context to get in/out/err streams instead of directly using System.in/out/err : that allow JPartitionCommand to work properly with JNode's shell streams. Modified Paths: -------------- 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/CommandProcessor.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/model/UserFacade.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/SwingViewFactory.java trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,6 +20,9 @@ package org.jnode.apps.jpartition; +import java.io.InputStream; +import java.io.PrintStream; + import org.jnode.apps.jpartition.model.UserFacade; /** @@ -39,13 +42,33 @@ private final boolean install; /** + * The input stream to use. + */ + private final InputStream in; + + /** + * The output stream to use. + */ + private final PrintStream out; + + /** + * The error stream to use. + */ + private final PrintStream err; + + /** * Constructor for a new instance of JPartition application. * @param viewFactory The view factory used to create the user interface. + * @param in Input stream. + * @param out Output stream. * @param install True if we are trying to install jnode, false in other cases. */ - public JPartition(ViewFactory viewFactory, boolean install) { + public JPartition(ViewFactory viewFactory, InputStream in, PrintStream out, PrintStream err, boolean install) { this.viewFactory = viewFactory; this.install = install; + this.in = in; + this.out = out; + this.err = err; } /** @@ -53,13 +76,15 @@ * @throws Exception */ public final void launch() throws Exception { - ErrorReporter errorReporter = viewFactory.createErrorReporter(); - UserFacade.getInstance().setErrorReporter(errorReporter); + ErrorReporter errorReporter = viewFactory.createErrorReporter(err); + Context context = new Context(in, out, errorReporter); + UserFacade.getInstance().setContext(context); + // CommandProcessor - Object cmdProcessorView = viewFactory.createCommandProcessorView(); + Object cmdProcessorView = viewFactory.createCommandProcessorView(context); // Device - viewFactory.createDeviceView(errorReporter, cmdProcessorView, install); + viewFactory.createDeviceView(context, cmdProcessorView, install); } } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -81,14 +81,14 @@ */ public void doExecute(boolean install, InputStream in, PrintStream out, PrintStream err, boolean consoleView, boolean swingView) throws Exception { ViewFactory viewFactory = - consoleView ? new ConsoleViewFactory(in, out, err) + consoleView ? new ConsoleViewFactory() : swingView ? new SwingViewFactory() : null; if (viewFactory == null) { err.println("No UI selected"); exit(1); } - - JPartition jpartition = new JPartition(viewFactory, install); + + JPartition jpartition = new JPartition(viewFactory, in, out, err, install); jpartition.launch(); } } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,6 +20,8 @@ package org.jnode.apps.jpartition; +import java.io.PrintStream; + /** * Factory used to build a user interface (text mode, graphical mode ...) for JPartition. * @@ -30,24 +32,27 @@ /** * Creates a view for the devices which might or might not (implementor's choice) * display available devices, their partitions... - * @param errorReporter The error reporter to use (normally created by this factory). + * @param context The {@link Context} to use. * @param cmdProcessorView The command processor view to use (normally created by this factory). * @param install True if we are trying to install jnode, false in other cases. * @return The device view. * @throws Exception */ - Object createDeviceView(ErrorReporter errorReporter, Object cmdProcessorView, boolean install) + Object createDeviceView(Context context, Object cmdProcessorView, boolean install) throws Exception; /** * Creates a command processor view. + * @param context The {@link Context} to use. * @return A new command processor view. */ - Object createCommandProcessorView(); + Object createCommandProcessorView(Context context); /** * Creates an error reporter. + * @param err The error stream to use. * @return A new error reporter. */ - ErrorReporter createErrorReporter(); + ErrorReporter createErrorReporter(PrintStream err); + } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -21,9 +21,9 @@ package org.jnode.apps.jpartition.commands; import java.io.IOException; -import java.io.OutputStreamWriter; import java.io.PrintWriter; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.commands.framework.BaseCommand; import org.jnode.apps.jpartition.commands.framework.CommandException; import org.jnode.driver.ApiNotFoundException; @@ -43,10 +43,9 @@ this.device = device; } - protected final PartitionHelper createPartitionHelper() throws CommandException { + protected final PartitionHelper createPartitionHelper(Context context) throws CommandException { try { - //FIXME replace System.out by output stream from (Console)ViewFactory - return new PartitionHelper(device, new PrintWriter(new OutputStreamWriter(System.out))); + return new PartitionHelper(device, new PrintWriter(context.getOut())); } catch (DeviceNotFoundException e) { throw new CommandException(e); } catch (ApiNotFoundException e) { @@ -56,7 +55,7 @@ } } - protected abstract void doExecute() throws CommandException; + protected abstract void doExecute(Context context) throws CommandException; @Override public String toString() { Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,6 +20,7 @@ package org.jnode.apps.jpartition.commands; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.commands.framework.CommandException; import org.jnode.driver.bus.ide.IDEDevice; @@ -31,7 +32,7 @@ this.partitionNumber = partitionNumber; } - protected abstract void doExecute() throws CommandException; + protected abstract void doExecute(Context context) throws CommandException; @Override public String toString() { Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,6 +20,7 @@ package org.jnode.apps.jpartition.commands; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.commands.framework.CommandException; import org.jnode.driver.bus.ide.IDEDevice; @@ -34,7 +35,7 @@ } @Override - protected final void doExecute() throws CommandException { + protected final void doExecute(Context context) throws CommandException { // PartitionHelper helper = createPartitionHelper(); // try { // Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,6 +20,7 @@ package org.jnode.apps.jpartition.commands; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.commands.framework.CommandException; import org.jnode.driver.bus.ide.IDEDevice; import org.jnode.fs.FileSystem; @@ -35,7 +36,7 @@ } @Override - protected final void doExecute() throws CommandException { + protected final void doExecute(Context context) throws CommandException { // TODO Auto-generated method stub } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,9 +20,7 @@ package org.jnode.apps.jpartition.commands; -import java.io.OutputStreamWriter; -import java.io.PrintWriter; - +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.commands.framework.CommandException; import org.jnode.driver.bus.ide.IDEDevice; import org.jnode.partitions.command.PartitionHelper; @@ -34,11 +32,10 @@ } @Override - protected void doExecute() throws CommandException { + protected void doExecute(Context context) throws CommandException { PartitionHelper helper; - try { - //FIXME replace System.out by output stream from (Console)ViewFactory - helper = new PartitionHelper(device, new PrintWriter(new OutputStreamWriter(System.out))); + try { + helper = createPartitionHelper(context); helper.initMbr(); } catch (Throwable t) { throw new CommandException(t); Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,6 +20,7 @@ package org.jnode.apps.jpartition.commands; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.commands.framework.CommandException; import org.jnode.driver.bus.ide.IDEDevice; @@ -30,7 +31,7 @@ } @Override - protected final void doExecute() throws CommandException { + protected final void doExecute(Context context) throws CommandException { // TODO Auto-generated method stub } 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 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/BaseCommand.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -21,6 +21,7 @@ package org.jnode.apps.jpartition.commands.framework; import org.apache.log4j.Logger; +import org.jnode.apps.jpartition.Context; /** * Abstract implementation of the {@link Command} interface. @@ -47,7 +48,7 @@ status = CommandStatus.RUNNING; processor.commandStarted(this); - doExecute(); + doExecute(processor.getContext()); status = CommandStatus.SUCCESS; } catch (CommandException e) { log.error("command failed", e); @@ -67,7 +68,12 @@ return status; } - protected abstract void doExecute() throws CommandException; + /** + * Actually execute the command with the given context. + * @param context The context to use. + * @throws CommandException + */ + protected abstract void doExecute(Context context) throws CommandException; /** * Get a printable representation of the command. 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 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessor.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -25,20 +25,21 @@ import java.util.Stack; import org.apache.log4j.Logger; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.ErrorReporter; public class CommandProcessor { private static final Logger log = Logger.getLogger(CommandProcessor.class); - private final ErrorReporter errorReporter; + private final Context context; private Stack<Command> commands = new Stack<Command>(); private List<CommandProcessorListener> listeners = new ArrayList<CommandProcessorListener>(); private boolean running = false; - public CommandProcessor(ErrorReporter errorReporter) { - this.errorReporter = errorReporter; + public CommandProcessor(Context context) { + this.context = context; } public List<Command> getPendingCommands() { @@ -58,7 +59,7 @@ running = false; } } catch (Throwable t) { - errorReporter.reportError(log, this, t); + context.getErrorReporter().reportError(log, this, t); } } @@ -133,4 +134,11 @@ public void removeListener(CommandProcessorListener listener) { listeners.remove(listener); } + + /** + * @return + */ + public Context getContext() { + return context; + } } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -43,14 +43,14 @@ private final boolean install; private Partition selectedPartition; - ConsoleView(InputStream in, PrintStream out, ErrorReporter errorReporter, boolean install) { - super(new Context(in, out, errorReporter)); + ConsoleView(Context context, boolean install) { + super(context); this.install = install; try { start(); } catch (Throwable e) { - errorReporter.reportError(log, this, e); + context.getErrorReporter().reportError(log, this, e); } println(); Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,9 +20,9 @@ package org.jnode.apps.jpartition.consoleview; -import java.io.InputStream; import java.io.PrintStream; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.ErrorReporter; import org.jnode.apps.jpartition.ViewFactory; @@ -32,27 +32,26 @@ * */ public class ConsoleViewFactory implements ViewFactory { - private final InputStream in; - private final PrintStream out; - private final PrintStream err; - - public ConsoleViewFactory(InputStream in, PrintStream out, PrintStream err) { - this.in = in; - this.out = out; - this.err = err; + public ConsoleViewFactory() { } - public Object createCommandProcessorView() { - return null; // nothing particular to create : work is done by - // createDeviceView + public Object createCommandProcessorView(Context context) { + // nothing particular to create : work is done by createDeviceView + return null; } - public Object createDeviceView(ErrorReporter errorReporter, Object cmdProcessorView, + /** + * {@inheritDoc} + */ + public Object createDeviceView(Context context, Object cmdProcessorView, boolean install) throws Exception { - return new ConsoleView(in, out, errorReporter, install); + return new ConsoleView(context, install); } - public ErrorReporter createErrorReporter() { + /** + * {@inheritDoc} + */ + public ErrorReporter createErrorReporter(PrintStream err) { return new ConsoleErrorReporter(err); } } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -30,7 +30,7 @@ import org.apache.log4j.Level; import org.apache.log4j.Logger; -import org.jnode.apps.jpartition.ErrorReporter; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.commands.CreatePartitionCommand; import org.jnode.apps.jpartition.commands.FormatPartitionCommand; import org.jnode.apps.jpartition.commands.RemovePartitionCommand; @@ -62,7 +62,8 @@ private final Map<String, Formatter<? extends FileSystem<?>>> formatters = new HashMap<String, Formatter<? extends FileSystem<?>>>(); private Formatter<? extends FileSystem<?>> selectedFormatter; - private ErrorReporter errorReporter; + + private Context context; private CommandProcessor cmdProcessor; @@ -78,9 +79,9 @@ addFormatter(new Ext2FileSystemFormatter(BlockSize._4Kb)); } - public void setErrorReporter(ErrorReporter errorReporter) { - this.errorReporter = errorReporter; - cmdProcessor = new CommandProcessor(errorReporter); + public void setContext(Context context) { + this.context = context; + cmdProcessor = new CommandProcessor(context); } public void selectFormatter(String name) { @@ -122,8 +123,8 @@ } public void errorHappened(OSFacadeException e) { - if (errorReporter != null) { - errorReporter.reportError(LOG, UserFacade.this, e); + if (context.getErrorReporter() != null) { + context.getErrorReporter().reportError(LOG, UserFacade.this, e); } } }; @@ -226,8 +227,8 @@ // not called by user => need to notify selectDevice(selectedDev, true); } catch (OSFacadeException e) { - if (errorReporter != null) { - errorReporter.reportError(LOG, this, e); + if (context.getErrorReporter() != null) { + context.getErrorReporter().reportError(LOG, this, e); } } } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -27,7 +27,7 @@ import javax.swing.Action; import javax.swing.JLabel; -import org.jnode.apps.jpartition.ErrorReporter; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.model.Device; import org.jnode.apps.jpartition.model.Partition; import org.jnode.apps.jpartition.model.UserFacade; @@ -36,8 +36,8 @@ public class DeviceView extends DiskAreaView<Device> { private static final long serialVersionUID = 4961328945650444476L; - public DeviceView(ErrorReporter errorReporter) { - super(errorReporter); + public DeviceView(Context context) { + super(context); setLayout(null); update(); @@ -73,7 +73,7 @@ final int space = 1; double x = 0; for (Partition partition : bounded.getPartitions()) { - PartitionView p = new PartitionView(errorReporter, this, partition); + PartitionView p = new PartitionView(context, this, partition); double size = pixelsPerByte * partition.getSize(); p.setBounds((int) x + space, 0 + space, (int) size - 2 * space, getHeight() - 2 * Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -22,6 +22,7 @@ import java.awt.Color; import java.awt.Graphics; +import java.awt.Rectangle; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; @@ -32,24 +33,22 @@ import javax.swing.JPopupMenu; import javax.swing.border.Border; -import org.jnode.apps.jpartition.ErrorReporter; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.model.Bounded; -import java.awt.Rectangle; - public abstract class DiskAreaView<T extends Bounded> extends JComponent { private static final long serialVersionUID = -506634580666065291L; private final int DEFAULT_PIXELS_PER_BYTE = 1; protected final int borderWidth = 5; - protected final ErrorReporter errorReporter; + protected final Context context; protected T bounded; protected double pixelsPerByte = DEFAULT_PIXELS_PER_BYTE; - public DiskAreaView(ErrorReporter errorReporter) { - this.errorReporter = errorReporter; + public DiskAreaView(Context context) { + this.context = context; setLayout(null); setOpaque(true); Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -31,7 +31,7 @@ import javax.swing.JLabel; import javax.swing.JPanel; -import org.jnode.apps.jpartition.ErrorReporter; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.model.Device; import org.jnode.apps.jpartition.model.UserFacade; import org.jnode.apps.jpartition.model.UserListener; @@ -42,14 +42,14 @@ private final DefaultComboBoxModel devices; private final DeviceView deviceView; - public MainView(ErrorReporter errorReporter, JComponent cmdProcessorView) throws Exception { + public MainView(Context context, JComponent cmdProcessorView) throws Exception { setTitle("JPartition"); setLayout(new BorderLayout()); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); add(cmdProcessorView, BorderLayout.SOUTH); - deviceView = new DeviceView(errorReporter); + deviceView = new DeviceView(context); add(deviceView, BorderLayout.CENTER); devices = new DefaultComboBoxModel(UserFacade.getInstance().getDeviceNames()); Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -28,7 +28,7 @@ import javax.swing.Action; import javax.swing.BorderFactory; -import org.jnode.apps.jpartition.ErrorReporter; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.model.Partition; import org.jnode.apps.jpartition.model.UserFacade; import org.jnode.apps.jpartition.swingview.actions.AddPartitionAction; @@ -41,8 +41,8 @@ private PartitionState state = new IdleState(); - public PartitionView(ErrorReporter errorReporter, DeviceView deviceView, Partition partition) { - super(errorReporter); + public PartitionView(Context context, DeviceView deviceView, Partition partition) { + super(context); this.deviceView = deviceView; this.bounded = partition; update(); @@ -119,10 +119,10 @@ Action[] actions; if (bounded.isUsed()) { actions = - new Action[] {new FormatPartitionAction(errorReporter, this), - new RemovePartitionAction(errorReporter, this), }; + new Action[] {new FormatPartitionAction(context.getErrorReporter(), this), + new RemovePartitionAction(context.getErrorReporter(), this), }; } else { - actions = new Action[] {new AddPartitionAction(errorReporter, this), }; + actions = new Action[] {new AddPartitionAction(context.getErrorReporter(), this), }; } return actions; } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,22 +20,31 @@ package org.jnode.apps.jpartition.swingview; +import java.io.PrintStream; + import javax.swing.JComponent; +import org.jnode.apps.jpartition.Context; import org.jnode.apps.jpartition.ErrorReporter; import org.jnode.apps.jpartition.ViewFactory; public class SwingViewFactory implements ViewFactory { - public Object createDeviceView(ErrorReporter errorReporter, Object cmdProcessorView, + public Object createDeviceView(Context context, Object cmdProcessorView, boolean install) throws Exception { - return new MainView(errorReporter, (JComponent) cmdProcessorView); + return new MainView(context, (JComponent) cmdProcessorView); } - public Object createCommandProcessorView() { + /** + * {@inheritDoc} + */ + public Object createCommandProcessorView(Context context) { return new CommandProcessorView(); } - public ErrorReporter createErrorReporter() { + /** + * {@inheritDoc} + */ + public ErrorReporter createErrorReporter(PrintStream err) { return new SwingErrorReporter(); } } Modified: trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java 2009-05-02 01:44:40 UTC (rev 5382) +++ trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java 2009-05-02 10:29:31 UTC (rev 5383) @@ -20,7 +20,9 @@ package org.jnode.apps.jpartition; +import java.io.InputStream; import java.io.OutputStreamWriter; +import java.io.PrintStream; import java.io.PrintWriter; import junit.framework.TestSuite; @@ -30,8 +32,6 @@ import org.jnode.apps.jpartition.model.TestNonEmptyDevice; import org.jnode.apps.jpartition.model.TestOSFacade; import org.jnode.apps.jpartition.model.TestRemovePartitionFromDevice; -import org.jnode.apps.jpartition.swingview.FileDeviceView; -import org.jnode.apps.jpartition.utils.device.AbstractIDEDevice; import org.jnode.apps.jpartition.utils.device.DeviceUtils; import org.jnode.driver.bus.ide.IDEDevice; import org.jnode.fs.jfat.command.JGrub; @@ -62,9 +62,12 @@ * @throws Throwable */ public static void main(String[] args) throws Throwable { + InputStream in = System.in; + PrintStream out = System.out; + PrintStream err = System.err; - final ViewFactory vf = new ConsoleViewFactory(System.in, System.out, System.err); - final ErrorReporter errorReporter = vf.createErrorReporter(); + final ViewFactory vf = new ConsoleViewFactory(); + final ErrorReporter errorReporter = vf.createErrorReporter(err); /* final Thread t = new Thread() { public void run() { @@ -83,6 +86,6 @@ // jgrub.install(); - new JPartitionCommand().doExecute(true, System.in, System.out, System.err, true, false); + new JPartitionCommand().doExecute(true, in, out, err, true, false); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cr...@us...> - 2009-05-23 10:18:09
|
Revision: 5507 http://jnode.svn.sourceforge.net/jnode/?rev=5507&view=rev Author: crawley Date: 2009-05-23 10:18:01 +0000 (Sat, 23 May 2009) Log Message: ----------- Fixing compilation warnings Modified Paths: -------------- trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.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/debug/ListPanel.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/Editor.java trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Options.java trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/ExtentFactory.java trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/UnsupportedFormatException.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/SparseDiskFactory.java 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/test/org/jnode/apps/jpartition/JPartitionTest.java trunk/distr/src/test/org/jnode/apps/jpartition/model/AbstractTestDevice.java trunk/distr/src/test/org/jnode/apps/jpartition/swingview/FileDeviceView.java trunk/distr/src/test/org/jnode/apps/vmware/disk/test/TestCreation.java Modified: trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java =================================================================== --- trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -97,7 +97,7 @@ public Response serve(String uri, String method, Properties header, Properties parms) { System.out.println(method + " '" + uri + "' "); - Enumeration e = header.propertyNames(); + Enumeration<?> e = header.propertyNames(); while (e.hasMoreElements()) { String value = (String) e.nextElement(); System.out.println(" HDR: '" + value + "' = '" + @@ -266,6 +266,8 @@ * and returns the response. */ private class HTTPSession implements Runnable { + private Socket mySocket; + public HTTPSession(Socket s) { mySocket = s; Thread t = new Thread(this); @@ -415,7 +417,7 @@ pw.print("Date: " + gmtFrmt.format(new Date()) + "\r\n"); if (header != null) { - Enumeration e = header.keys(); + Enumeration<?> e = header.keys(); while (e.hasMoreElements()) { String key = (String) e.nextElement(); String value = header.getProperty(key); @@ -454,9 +456,6 @@ } } } - - private Socket mySocket; - private BufferedReader myIn; } @@ -619,7 +618,7 @@ /** * Hashtable mapping (String)FILENAME_EXTENSION -> (String)MIME_TYPE. */ - private static Hashtable theMimeTypes = new Hashtable(); + private static Hashtable<String, String> theMimeTypes = new Hashtable<String, String>(); static { StringTokenizer st = new StringTokenizer( Modified: trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -85,7 +85,6 @@ private JTextArea editor; private JTextArea output; private Interpreter interpreter; - private static final int NUM_TRACE = 5; void showSaveDialog() { String s = JOptionPane Modified: trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -322,6 +322,7 @@ f.delete(); } + @SuppressWarnings("unused") private void notImplemented() { JOptionPane.showMessageDialog(this, "NOT IMPLEMENTED!", null, JOptionPane.DEFAULT_OPTION); currentPane.requestFocus(); Modified: trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -38,7 +38,7 @@ abstract class ListPanel extends JPanel { //public static final char TOGGLE_SHOW_SUPER_FIELDS='p'; //show the fields of superclasses - Vector list; + Vector<ListElement> list; JList jlist; JScrollPane scrollPane; int rows, cols; @@ -95,7 +95,7 @@ /** * @param list a Vector of ListElements */ - public void setList(final Vector list) { + public void setList(final Vector<ListElement> list) { this.list = list; ((DefaultListModel) jlist.getModel()).removeAllElements(); @@ -110,7 +110,7 @@ return new Dimension(cols, rows); } - public Vector getList() { + public Vector<ListElement> getList() { return list; } Modified: trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -40,9 +40,9 @@ public void fillPanel(Object rootObject) { this.rootObject = rootObject; - final Vector list = new Vector(); + final Vector<ListElement> list = new Vector<ListElement>(); - Class parent = rootObject.getClass(); + Class<?> parent = rootObject.getClass(); //add the fields while (parent != null) { Field[] fields = parent.getDeclaredFields(); Modified: trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -21,8 +21,6 @@ package org.jnode.apps.debug; import java.util.Collection; -import java.util.Iterator; -import java.util.Set; import java.util.Vector; import javax.naming.NameNotFoundException; import org.jnode.naming.InitialNaming; @@ -47,8 +45,9 @@ //something is screwed: sometimes strange values are returned by getSelectedIndex() Object o = list.elementAt(jlist.getSelectedIndex()); Object res = ((ListElement) o).getValue(); - if (res instanceof Collection) - fill((Collection) res); + if (res instanceof Collection) { + fill((Collection<?>) res); + } //if(res instanceof Naming) // fill(); //TODO: ... @@ -58,14 +57,11 @@ } protected void fill() { - Set allNames = InitialNaming.nameSet(); - final Vector list = new Vector(); + final Vector<ListElement> list = new Vector<ListElement>(); try { - for (Iterator it = allNames.iterator(); it.hasNext();) { - Object key = it.next(); - Object namedObject = InitialNaming.lookup((Class) key); - final ListElement element = new ListElement(namedObject, key.toString()); - list.addElement(element); + for (Class<?> key : InitialNaming.nameSet()) { + Object namedObject = InitialNaming.lookup(key); + list.addElement(new ListElement(namedObject, key.toString())); } } catch (NameNotFoundException nnfe) { nnfe.printStackTrace(); @@ -73,10 +69,9 @@ setList(list); } - protected void fill(Collection coll) { - final Vector list = new Vector(); - for (Iterator it = coll.iterator(); it.hasNext();) { - Object o = it.next(); + protected void fill(Collection<?> coll) { + final Vector<ListElement> list = new Vector<ListElement>(); + for (Object o : coll) { final ListElement element = new ListElement(o, getElementLabel(o)); list.addElement(element); } Modified: trunk/distr/src/apps/org/jnode/apps/debug/TC.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/debug/TC.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/debug/TC.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -88,8 +88,7 @@ if (o instanceof ObjectMethodPair) { ObjectMethodPair omp = (ObjectMethodPair) o; //TODO: support for methods that take arguments - result = omp.getMethod().invoke(omp.getObject(), - null); + result = omp.getMethod().invoke(omp.getObject()); } } catch (Exception ex) { addResultItem(ex); @@ -109,7 +108,7 @@ resultPane = new ListPanel(75, 10) { public void elementSelected(Object o) { if (o != null) { - final Vector newList = new Vector(); + final Vector<ListElement> newList = new Vector<ListElement>(); newList.addElement(new ListElement(o, getElementLabel(o))); getRootObjectPanel().setList(newList); } @@ -124,10 +123,10 @@ } protected void addResultItem(Object o) { -//if(o!=null)System.out.println(o.toString());else System.out.println("NULL"); - Vector resultList = getResultPane().getList(); - if (resultList == null) - resultList = new Vector(); + Vector<ListElement> resultList = getResultPane().getList(); + if (resultList == null) { + resultList = new Vector<ListElement>(); + } String label = (o == null) ? "null" : o.getClass().getName() + " [" + o.toString() + "]"; resultList.addElement(new ListElement(o, label)); getResultPane().setList(resultList); Modified: trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -60,10 +60,12 @@ public void execute() throws Exception { + @SuppressWarnings("unused") File home_dir = ARG_HOME.getValue(); String command = FLAG_START.isSet() ? "start" : FLAG_STOP.isSet() ? "stop" : "?"; // FIXME ... this needs to be passed to the server somehow. + @SuppressWarnings("unused") int port = ARG_PORT.isSet() ? ARG_PORT.getValue() : 1527; NetworkServerControlImpl server = new NetworkServerControlImpl(); Modified: trunk/distr/src/apps/org/jnode/apps/edit/Editor.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/edit/Editor.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/edit/Editor.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -75,18 +75,19 @@ panel.add(sp, BorderLayout.CENTER); directory = (String) AccessController.doPrivileged(new GetPropertyAction("user.dir")); if (file != null) { - Boolean exists = (Boolean) AccessController.doPrivileged(new PrivilegedAction() { - public Object run() { + Boolean exists = AccessController.doPrivileged(new PrivilegedAction<Boolean>() { + public Boolean run() { return file.exists(); } }); - if (exists) + if (exists) { readFile(file); - else { + } else { try { file.createNewFile(); } catch (IOException e) { + // FIXME ... this should no be squashed. //empty } } @@ -178,7 +179,7 @@ } private void readFile(final File file) { - AccessController.doPrivileged(new PrivilegedAction() { + AccessController.doPrivileged(new PrivilegedAction<Object>() { public Object run() { try { FileInputStream fis = new FileInputStream(file); @@ -205,7 +206,7 @@ } private void writeFile(final File file) { - AccessController.doPrivileged(new PrivilegedAction() { + AccessController.doPrivileged(new PrivilegedAction<Object>() { public Object run() { try { FileWriter fw = new FileWriter(file); Modified: trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -46,7 +46,7 @@ printWriter.close(); } - NanoHTTPD nanoHTTPD = new NanoHTTPD(80) { + new NanoHTTPD(80) { public Response serve(String uri, String method, Properties header, Properties parms) { return serveFile(uri, header, new File("/jnode"), true); } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -21,13 +21,10 @@ package org.jnode.apps.jpartition.consoleview; import java.io.IOException; -import java.io.InputStream; -import java.io.PrintStream; import java.util.List; import org.apache.log4j.Logger; import org.jnode.apps.jpartition.Context; -import org.jnode.apps.jpartition.ErrorReporter; import org.jnode.apps.jpartition.commands.framework.Command; import org.jnode.apps.jpartition.consoleview.components.Component; import org.jnode.apps.jpartition.consoleview.components.NumberField; 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 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Options.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -22,7 +22,6 @@ import java.io.IOException; import java.util.Arrays; -import java.util.Collection; import java.util.List; import org.jnode.apps.jpartition.Context; @@ -40,7 +39,6 @@ return show(question, Arrays.asList(options)); } - @SuppressWarnings("unchecked") public <T> T show(String question, List<T> options) throws IOException { return show(question, options, null); } Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -43,6 +43,7 @@ public class OSFacade { private static final Logger LOG = Logger.getLogger(OSFacade.class); + @SuppressWarnings("unused") private static Comparator<Partition> PARTITION_COMPARATOR = new Comparator<Partition>() { public int compare(Partition p1, Partition p2) { // we assume here that the partition doesn't intersect @@ -197,6 +198,7 @@ return supported ? partitions : null; } + @SuppressWarnings("unused") private FileSystem<?> getFileSystem(org.jnode.driver.Device dev, PartitionTableEntry pte) { /* * DeviceManager devMan = InitialNaming.lookup(DeviceManager.NAME); Modified: trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -37,6 +37,8 @@ import org.jnode.util.NumberUtils; public class PartitionView extends DiskAreaView<Partition> { + private static final long serialVersionUID = 1L; + private final DeviceView deviceView; private PartitionState state = new IdleState(); Modified: trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/ExtentFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/ExtentFactory.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/ExtentFactory.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -34,6 +34,7 @@ * */ public abstract class ExtentFactory { + @SuppressWarnings("unused") private static final Logger LOG = Logger.getLogger(SparseExtentFactory.class); /** Modified: trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/UnsupportedFormatException.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/UnsupportedFormatException.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/UnsupportedFormatException.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -30,6 +30,8 @@ */ public class UnsupportedFormatException extends IOException { + private static final long serialVersionUID = 1L; + /** * */ Modified: trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/EntryArray.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/EntryArray.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/EntryArray.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -29,6 +29,7 @@ * */ public class EntryArray { + @SuppressWarnings("unused") private static final Logger LOG = Logger.getLogger(EntryArray.class); private final int[] entries; Modified: trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseDiskFactory.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseDiskFactory.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/apps/vmware/disk/handler/sparse/SparseDiskFactory.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -60,9 +60,12 @@ protected File createMainFile(File directory, String name, long size) throws IOException { File mainFile = new File(directory, createDiskFileName(name, 0)); RandomAccessFile raf = new RandomAccessFile(mainFile, "rw"); + @SuppressWarnings("unused") FileChannel channel = raf.getChannel(); + @SuppressWarnings("unused") Descriptor descriptor = buildDescriptor(mainFile, size); + @SuppressWarnings("unused") SparseExtentHeader header = new SparseExtentHeader(); return mainFile; Modified: trunk/distr/src/apps/org/jnode/games/boxworld/BoxWorld.java =================================================================== --- trunk/distr/src/apps/org/jnode/games/boxworld/BoxWorld.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/games/boxworld/BoxWorld.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -55,6 +55,8 @@ public class BoxWorld extends JComponent implements WindowListener, KeyListener, MouseListener, MouseMotionListener, ActionListener, ItemListener { + private static final long serialVersionUID = 1L; + // ***************** WORLD DATA **************************** private int[][] vecs = { {81, -766241563, -831219482, -696967897, -863854201, -896130840, @@ -256,8 +258,10 @@ private int x, y, xo, yo; // popup menu + @SuppressWarnings("unused") private PopupMenu menu; + @SuppressWarnings("unused") private CheckboxMenuItem beep; // **************** APPLET METHODS ************************* Modified: trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java =================================================================== --- trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/games/rubik/Rubik.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -43,6 +43,9 @@ * */ public final class Rubik extends JComponent { + + private static final long serialVersionUID = 1L; + int i, j, k, n, o, p, q, lastX, lastY, dx, dy; int rectX[], rectY[]; Color colList[], bgcolor; @@ -183,7 +186,7 @@ * @return */ public double vNorm(double v[], int ix) { - return m.sqrt(v[ix] * v[ix] + v[ix + 1] * v[ix + 1] + v[ix + 2] * v[ix + 2]); + return Math.sqrt(v[ix] * v[ix] + v[ix + 1] * v[ix + 1] + v[ix + 2] * v[ix + 2]); } /** @@ -372,7 +375,7 @@ twisting = false; naturalState = true; for (i = 0; i < 20; i++) - colorTwist((int) (m.random() * 6), (int) (m.random() * 3 + 1)); + colorTwist((int) (Math.random() * 6), (int) (Math.random() * 3 + 1)); repaint(); } return false; @@ -422,7 +425,7 @@ } twisting = true; phi = 0.02 * (currDragDir[0] * (x - lastX) + currDragDir[1] * (y - lastY)) / - m.sqrt(currDragDir[0] * currDragDir[0] + currDragDir[1] * currDragDir[1]); + Math.sqrt(currDragDir[0] * currDragDir[0] + currDragDir[1] * currDragDir[1]); repaint(); return false; } @@ -451,7 +454,7 @@ } else { // Twist, compute twisting angle phi phi = 0.02 * (currDragDir[0] * (x - lastX) + currDragDir[1] * (y - lastY)) / - m.sqrt(currDragDir[0] * currDragDir[0] + currDragDir[1] * currDragDir[1]); + Math.sqrt(currDragDir[0] * currDragDir[0] + currDragDir[1] * currDragDir[1]); repaint(); } return false; @@ -585,8 +588,8 @@ else { copyVec(eye, 0, Teye, 0); // In twisted state? Compute top observer copyVec(eX, 0, TeX, 0); - Cphi = m.cos(phi + phibase); - Sphi = -m.sin(phi + phibase); + Cphi = Math.cos(phi + phibase); + Sphi = -Math.sin(phi + phibase); // Twist around which axis? switch (twistSide) { case 0: // z Modified: trunk/distr/src/apps/org/jnode/games/tetris/Tetris.java =================================================================== --- trunk/distr/src/apps/org/jnode/games/tetris/Tetris.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/apps/org/jnode/games/tetris/Tetris.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -42,6 +42,9 @@ * @author Levente S\u00e1ntha */ public class Tetris extends JComponent implements KeyListener, MouseListener { + + private static final long serialVersionUID = 1L; + private static final int[][][][] BLOCKS = { // * * * // * Modified: trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/test/org/jnode/apps/jpartition/JPartitionTest.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -82,6 +82,7 @@ */ // DeviceUtils.createFakeDevice(new ErrorReporter()); IDEDevice dev = DeviceUtils.createFileDevice(errorReporter); + @SuppressWarnings("unused") JGrub jgrub = new JGrub(new PrintWriter(new OutputStreamWriter(System.out)), dev); // jgrub.install(); Modified: trunk/distr/src/test/org/jnode/apps/jpartition/model/AbstractTestDevice.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/jpartition/model/AbstractTestDevice.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/test/org/jnode/apps/jpartition/model/AbstractTestDevice.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -270,6 +270,7 @@ for (Partition part : device.getPartitions()) { if (part.isUsed() == usedPartition) { final long start = part.getStart(); + @SuppressWarnings("unused") final long end = part.getEnd(); final long size = part.getSize(); final boolean used = part.isUsed(); Modified: trunk/distr/src/test/org/jnode/apps/jpartition/swingview/FileDeviceView.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/jpartition/swingview/FileDeviceView.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/test/org/jnode/apps/jpartition/swingview/FileDeviceView.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -38,7 +38,9 @@ import org.jnode.apps.jpartition.utils.device.DeviceUtils; import org.jnode.driver.bus.ide.IDEDevice; +@SuppressWarnings("serial") public class FileDeviceView extends JFrame { + @SuppressWarnings("unused") private static final Logger log = Logger.getLogger(FileDeviceView.class); private final ErrorReporter errorReporter; Modified: trunk/distr/src/test/org/jnode/apps/vmware/disk/test/TestCreation.java =================================================================== --- trunk/distr/src/test/org/jnode/apps/vmware/disk/test/TestCreation.java 2009-05-23 08:13:03 UTC (rev 5506) +++ trunk/distr/src/test/org/jnode/apps/vmware/disk/test/TestCreation.java 2009-05-23 10:18:01 UTC (rev 5507) @@ -31,6 +31,7 @@ * */ public class TestCreation extends BaseTest { + @SuppressWarnings("unused") private static final Logger LOG = Logger.getLogger(TestCreation.class); /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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...> - 2013-02-17 19:51:55
|
Revision: 5955 http://jnode.svn.sourceforge.net/jnode/?rev=5955&view=rev Author: lsantha Date: 2013-02-17 19:51:39 +0000 (Sun, 17 Feb 2013) Log Message: ----------- Updated 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/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 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/fi/iki/elonen/NanoHTTPD.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jawk/JawkMain.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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/charvabsh/CharvaBsh.java =================================================================== --- trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/charvabsh/CharvaBsh.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/commander/CharvaCommander.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/console/SwingConsole.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/debug/ListElement.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/debug/ListPanel.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/debug/ObjectFieldPair.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/debug/ObjectMethodPair.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/debug/PropertiesPanel.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/debug/RootObjectPanel.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/debug/TC.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/derby/DerbyCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/edit/EditCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/edit/Editor.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/editor/LeedCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/editor/LeviCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/editor/TextEditor.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/httpd/NanoHTTPDCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jetty/JettyCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/Context.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/ErrorReporter.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartition.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/JPartitionCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/ViewFactory.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BaseDeviceCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/BasePartitionCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/CreatePartitionCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/FormatPartitionCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/InitMbrCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/RemovePartitionCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/BaseCommand.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/Command.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandException.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessor.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandProcessorListener.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/commands/framework/CommandStatus.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleErrorReporter.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleView.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/ConsoleViewFactory.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/DeviceLabelizer.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/PartitionLabelizer.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Component.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Labelizer.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/NumberField.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/Options.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/consoleview/components/YesNo.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/Bounded.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/Device.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/DeviceException.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacade.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSFacadeException.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/OSListener.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/Partition.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserFacade.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/model/UserListener.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/CommandProcessorView.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/Constants.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DeviceView.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/DiskAreaView.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/MainView.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/PartitionView.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingErrorReporter.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/SwingViewFactory.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AbstractAction.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/AddPartitionAction.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/FormatPartitionAction.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/InitMbrAction.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/jpartition/swingview/actions/RemovePartitionAction.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jnode/apps/telnetd/JNodeCommandShell.java 2013-02-17 19:51:39 UTC (rev 5955) @@ -1,7 +1,7 @@ /* - * $Id: header.txt 5714 2010-01-03 13:33:07Z lsantha $ + * $Id$ * - * Copyright (C) 2003-2012 JNode.org + * Copyright (C) 2003-2013 JNode.org * * This library is 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 2013-02-17 19:19:53 UTC (rev 5954) +++ trunk/distr/src/apps/org/jn... [truncated message content] |