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>
* 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$

View File

@ -41,6 +41,7 @@ import com.webcodepro.applecommander.util.TextBundle;
* <p>
* 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

View File

@ -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;