Package | Description |
---|---|
smsqmulator |
The purpose of this project is to have an SMSQ/E emulator "machine" in java.
|
Modifier and Type | Field and Description |
---|---|
protected WinDir |
WinFile.dir |
protected WinDir |
WinDrive.mainDir |
Modifier and Type | Method and Description |
---|---|
WinDir |
WinDir.findInDirs(byte[] fname)
Finds out whether a file belongs or would belong in this dir or any of its subdirs.
|
WinDir |
WinFile.getDir()
Gets the directory this file is in.
|
Modifier and Type | Method and Description |
---|---|
void |
WinDir.addToList(WinDir toAdd)
Add a dir to my dir list.
|
void |
WinDrive.changeParentDir(WinDir oldDir,
int oldEntry,
WinDir newDir,
int newEntry)
Changes the parent dir of a file to the new dir.
|
void |
WinDir.removeFromList(WinDir toRemove)
Remove a dir from my dir list.
|
void |
WinDir.renameFile(WinDir oldDir,
WinFile wFile,
byte[] fname)
Renames/moves a file from the old directory to this new one.
|
void |
WinFile.setDir(WinDir newDir)
Sets the directory this file is in.
|
Constructor and Description |
---|
WinDir(WinDrive drive,
WinDir parentDir,
int index,
java.nio.ByteBuffer buf,
java.util.ArrayList<java.lang.Integer> cchain,
byte[] name,
byte[] normalizedName)
This creates the directory object.
|
WinFile(WinDrive drive,
WinDir dir,
int index,
boolean readOnly,
java.nio.ByteBuffer buf,
java.util.ArrayList<java.lang.Integer> cchain)
Creates the object.
|