Fix javadoc warnings.

This commit is contained in:
John B. Matthews
2008-05-17 21:04:08 +00:00
parent 0abb2ef45b
commit 72a6d6ae80
3 changed files with 4 additions and 7 deletions

View File

@@ -47,6 +47,7 @@ import com.webcodepro.applecommander.util.TextBundle;
* <p> * <p>
* Date created: Oct 5, 2002 12:22:34 AM * Date created: Oct 5, 2002 12:22:34 AM
* @author Rob Greene * @author Rob Greene
* @author John B. Matthews
*/ */
public class PascalFileEntry implements FileEntry { public class PascalFileEntry implements FileEntry {
private TextBundle textBundle = StorageBundle.getInstance(); private TextBundle textBundle = StorageBundle.getInstance();
@@ -127,7 +128,6 @@ public class PascalFileEntry implements FileEntry {
/** /**
* Set the filetype. * Set the filetype.
* @author John B. Matthews
*/ */
public void setFiletype(String filetype) { public void setFiletype(String filetype) {
if ("bad".equalsIgnoreCase(filetype)) { //$NON-NLS-1$ if ("bad".equalsIgnoreCase(filetype)) { //$NON-NLS-1$

View File

@@ -41,6 +41,7 @@ import com.webcodepro.applecommander.util.TextBundle;
* <p> * <p>
* Date created: Oct 4, 2002 11:56:50 PM * Date created: Oct 4, 2002 11:56:50 PM
* @author Rob Greene * @author Rob Greene
* @author John B. Matthews [getFiles(), get/putDirectory(), createFile()]
*/ */
public class PascalFormatDisk extends FormattedDisk { public class PascalFormatDisk extends FormattedDisk {
private TextBundle textBundle = StorageBundle.getInstance(); private TextBundle textBundle = StorageBundle.getInstance();
@@ -141,7 +142,6 @@ public class PascalFormatDisk extends FormattedDisk {
/** /**
* Retrieve a list of files. * Retrieve a list of files.
* @see com.webcodepro.applecommander.storage.FormattedDisk#getFiles() * @see com.webcodepro.applecommander.storage.FormattedDisk#getFiles()
* @author John B. Matthews (for fixing algorithm)
*/ */
public List getFiles() { public List getFiles() {
List list = new ArrayList(); List list = new ArrayList();
@@ -161,7 +161,6 @@ public class PascalFormatDisk extends FormattedDisk {
/** /**
* Retrieve the entire directory. * Retrieve the entire directory.
* @author John B. Matthews
*/ */
public List getDirectory() { public List getDirectory() {
List list = new ArrayList(); List list = new ArrayList();
@@ -179,7 +178,6 @@ public class PascalFormatDisk extends FormattedDisk {
/** /**
* Write the revised directory. * Write the revised directory.
* @author John B. Matthews
*/ */
public void putDirectory(List list) { public void putDirectory(List list) {
byte[] directory = new byte[2048]; byte[] directory = new byte[2048];
@@ -195,7 +193,6 @@ public class PascalFormatDisk extends FormattedDisk {
/** /**
* Create a new FileEntry. * Create a new FileEntry.
* @author John B. Matthews
*/ */
public FileEntry createFile() throws DiskFullException { public FileEntry createFile() throws DiskFullException {
// find index of largest free space // find index of largest free space

View File

@@ -59,14 +59,14 @@ public class CompileWizard extends Wizard {
} }
/** /**
* @return * @return the directory
*/ */
public String getDirectory() { public String getDirectory() {
return directory; return directory;
} }
/** /**
* @param string * @param string the directory
*/ */
public void setDirectory(String string) { public void setDirectory(String string) {
directory = string; directory = string;