public interface IFolder
Modifier and Type | Method and Description |
---|---|
java.lang.String |
fullPath()
Returns the full path of this folder.
|
java.lang.String |
getId()
Returns the ID of the folder.
|
java.lang.String |
getName()
Returns the name of the folder.
|
IFolder |
getParent()
Returns the parent folder of this folder.
|
IFolder |
getSubFolder(java.lang.String name,
boolean recursive)
Returns a subfolder with the specified name.
|
java.lang.String |
getTitle()
Returns the title of the folder.
|
java.lang.String |
getType()
Returns the type of this folder
CLNT ...
|
java.util.Iterator<IFolder> |
subfolder()
Returns an iterator for subfolders
Each object in the list implements the
IFolder interface. |
java.lang.String getName()
java.lang.String getTitle()
java.lang.String getId()
java.lang.String getType()
java.util.Iterator<IFolder> subfolder()
IFolder
interface.
If there are no subfolders this method returns null
.IFolder getSubFolder(java.lang.String name, boolean recursive)
name
- Name of the subfolderrecursive
- true
if recursive false
otherwiseIFolder
IFolder getParent()
java.lang.String fullPath()