public interface IContainerInfo
IThing
,
IContainer
Modifier and Type | Method and Description |
---|---|
int |
getCount()
Get a count of all children of this container.
|
int |
getDepth()
gets depth of container where root folder/topic is depth 0
Some folders/topic may not have accurate/valid depth if they don't
have valid parent type
|
boolean |
hasSubContainers()
Check if this container contains containers
Useful for +/- in tree controls in the UI
|
void |
putContainerInfo(int count,
int depth,
boolean hasSubContainers)
puts container info in cache
|
int getCount() throws MetaException
MetaException
int getDepth() throws MetaException
MetaException
boolean hasSubContainers() throws MetaException
MetaException
void putContainerInfo(int count, int depth, boolean hasSubContainers)
count
- depth
- hasSubContainers
-