From 72a6d6ae806d4ebe7c5d88539a0cb4716e16507c Mon Sep 17 00:00:00 2001 From: "John B. Matthews" Date: Sat, 17 May 2008 21:04:08 +0000 Subject: [PATCH] Fix javadoc warnings. --- .../applecommander/storage/os/pascal/PascalFileEntry.java | 2 +- .../applecommander/storage/os/pascal/PascalFormatDisk.java | 5 +---- .../ui/swt/wizard/compilefile/CompileWizard.java | 4 ++-- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/src/com/webcodepro/applecommander/storage/os/pascal/PascalFileEntry.java b/src/com/webcodepro/applecommander/storage/os/pascal/PascalFileEntry.java index d2948a7..1e9bd88 100644 --- a/src/com/webcodepro/applecommander/storage/os/pascal/PascalFileEntry.java +++ b/src/com/webcodepro/applecommander/storage/os/pascal/PascalFileEntry.java @@ -47,6 +47,7 @@ import com.webcodepro.applecommander.util.TextBundle; *

* Date created: Oct 5, 2002 12:22:34 AM * @author Rob Greene + * @author John B. Matthews */ public class PascalFileEntry implements FileEntry { private TextBundle textBundle = StorageBundle.getInstance(); @@ -127,7 +128,6 @@ public class PascalFileEntry implements FileEntry { /** * Set the filetype. - * @author John B. Matthews */ public void setFiletype(String filetype) { if ("bad".equalsIgnoreCase(filetype)) { //$NON-NLS-1$ diff --git a/src/com/webcodepro/applecommander/storage/os/pascal/PascalFormatDisk.java b/src/com/webcodepro/applecommander/storage/os/pascal/PascalFormatDisk.java index 7748a5d..1ca6428 100644 --- a/src/com/webcodepro/applecommander/storage/os/pascal/PascalFormatDisk.java +++ b/src/com/webcodepro/applecommander/storage/os/pascal/PascalFormatDisk.java @@ -41,6 +41,7 @@ import com.webcodepro.applecommander.util.TextBundle; *

* Date created: Oct 4, 2002 11:56:50 PM * @author Rob Greene + * @author John B. Matthews [getFiles(), get/putDirectory(), createFile()] */ public class PascalFormatDisk extends FormattedDisk { private TextBundle textBundle = StorageBundle.getInstance(); @@ -141,7 +142,6 @@ public class PascalFormatDisk extends FormattedDisk { /** * Retrieve a list of files. * @see com.webcodepro.applecommander.storage.FormattedDisk#getFiles() - * @author John B. Matthews (for fixing algorithm) */ public List getFiles() { List list = new ArrayList(); @@ -161,7 +161,6 @@ public class PascalFormatDisk extends FormattedDisk { /** * Retrieve the entire directory. - * @author John B. Matthews */ public List getDirectory() { List list = new ArrayList(); @@ -179,7 +178,6 @@ public class PascalFormatDisk extends FormattedDisk { /** * Write the revised directory. - * @author John B. Matthews */ public void putDirectory(List list) { byte[] directory = new byte[2048]; @@ -195,7 +193,6 @@ public class PascalFormatDisk extends FormattedDisk { /** * Create a new FileEntry. - * @author John B. Matthews */ public FileEntry createFile() throws DiskFullException { // find index of largest free space diff --git a/src/com/webcodepro/applecommander/ui/swt/wizard/compilefile/CompileWizard.java b/src/com/webcodepro/applecommander/ui/swt/wizard/compilefile/CompileWizard.java index 4616399..ab05f97 100644 --- a/src/com/webcodepro/applecommander/ui/swt/wizard/compilefile/CompileWizard.java +++ b/src/com/webcodepro/applecommander/ui/swt/wizard/compilefile/CompileWizard.java @@ -59,14 +59,14 @@ public class CompileWizard extends Wizard { } /** - * @return + * @return the directory */ public String getDirectory() { return directory; } /** - * @param string + * @param string the directory */ public void setDirectory(String string) { directory = string;