Interface CachingTreeContentProvider.CachingKeyProvider
-
- All Known Implementing Classes:
SubsystemFilteringTreeContentProvider.SubsystemCachingKeyProvider
- Enclosing class:
- CachingTreeContentProvider
public static interface CachingTreeContentProvider.CachingKeyProviderThe caching elements key provider. Provides key for content provider to cache element children.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetKey(Object object)Returns element key to cache element children.
-
-
-
Method Detail
-
getKey
Object getKey(Object object)
Returns element key to cache element children. Method must returnequalskeys for the same orequalselements. May returnnullif element children are not intended to be cached.- Parameters:
object- the tree element to get key to cache its children, cannot benull- Returns:
- the element key to cache element children or
nullif element children are not intended to be cached
-
-