Package net.officefloor.web.value.load
Interface ValueLoaderFactory<T>
- All Known Implementing Classes:
ValueLoaderFactoryImpl
public interface ValueLoaderFactory<T>
Factory for the creation of a
ValueLoader.- Author:
- Daniel Sagenschneider
-
Method Summary
Modifier and TypeMethodDescriptioncreateValueLoader(T object) Creates theValueLoaderfor the object.Obtains the listing ofValueNameinstances that can be loaded.
-
Method Details
-
createValueLoader
Creates theValueLoaderfor the object.- Parameters:
object- Object to have values loaded onto it.- Returns:
ValueLoaderfor the object.- Throws:
Exception- If fails to create theValueLoader.
-
getValueNames
ValueName[] getValueNames()Obtains the listing ofValueNameinstances that can be loaded.- Returns:
- Listing of
ValueNameinstances that can be loaded.
-