Interface EnumerationInfoManager
public interface EnumerationInfoManager
This interface defines the method that enumeration info providers can use to reset their cached enumerations.
Supported API: true
Extendable: false
Supported API: true
Extendable: false
-
Method Summary
Modifier and TypeMethodDescriptionvoidresetEnumeration(EnumerationInfoProvider provider) This should be called by theEnumerationInfoProviderto flush it's dynamic enumeration from the manager's cache.
-
Method Details
-
resetEnumeration
This should be called by theEnumerationInfoProviderto flush it's dynamic enumeration from the manager's cache. This method will typically be called when the enumeration has changed. The enumeration manager will flush the enumeration from it's cache and callEnumerationInfoProvider.getEnumerationInfo()to re-retrieve the enumeration information.- Parameters:
provider- The provider of the enumeration to be flushed. The initialization string from the passed provider will be used to determine which enumeration will be flushed. Must not be null.
Supported API: true
-