mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-08-15 14:27:39 +00:00
Fix javadoc warnings.
This commit is contained in:
@@ -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$
|
||||||
|
@@ -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
|
||||||
|
@@ -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;
|
||||||
|
Reference in New Issue
Block a user