mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-01-09 03:29:48 +00:00
Fix javadoc warnings.
This commit is contained in:
parent
0abb2ef45b
commit
72a6d6ae80
src/com/webcodepro/applecommander
storage/os/pascal
ui/swt/wizard/compilefile
@ -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$
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user