| | |
| | | public interface WriteableStorage extends ReadableStorage |
| | | { |
| | | /** |
| | | * Opens the tree having the provided name. The tree is created if does not already exist. |
| | | * Opens the tree identified by the provided name. The tree is created if it does not already exist. |
| | | * |
| | | * @param name |
| | | * the tree name |
| | |
| | | void openTree(TreeName name); |
| | | |
| | | /** |
| | | * Truncates the tree having the provided name. It removes all the records in the tree. |
| | | * Truncates the tree identified by the provided name. It removes all the records in the tree. |
| | | * |
| | | * @param name |
| | | * the tree name |
| | |
| | | void renameTree(TreeName oldName, TreeName newName); |
| | | |
| | | /** |
| | | * Deletes the tree having the provided name. |
| | | * Deletes the tree identified by the provided name. |
| | | * |
| | | * @param name |
| | | * the tree name |