Added getSuggestedFilename and a null createFile (to get rid of

error messages; will be implemented later). Minor comment fix.
This commit is contained in:
Robert Greene 2003-01-26 02:40:04 +00:00
parent d6867f61db
commit 74a45b9f68
1 changed files with 18 additions and 1 deletions

View File

@ -194,6 +194,14 @@ public class RdosFormatDisk extends FormattedDisk {
return files;
}
/**
* Create a new FileEntry.
*/
public FileEntry createFile() throws DiskFullException {
// FIXME: Need to implement!
return null;
}
/**
* Identify the operating system format of this disk.
*/
@ -362,7 +370,7 @@ public class RdosFormatDisk extends FormattedDisk {
/**
* Format the disk as an RDOS disk.
* FIXME - RDOS does not "like" an AppleCommander formatted disk.
* This appears to be because the &CAT command command
* This appears to be because the &CAT command
* reads from track 1 sector 9 (whatever RDOS block that
* would be) and executes that code for the directory.
* AppleCommander will need to either clone the code or write
@ -398,4 +406,13 @@ public class RdosFormatDisk extends FormattedDisk {
public int getLogicalDiskNumber() {
return 0;
}
/**
* Returns a valid filename for the given filename. RDOS
* pretty much allows anything - so it is cut to 24 characters
* and trimmed (trailing whitespace may cause confusion).
*/
public String getSuggestedFilename(String filename) {
return filename.toUpperCase().substring(0, 24).trim();
}
}