Package net.officefloor.web.value.load
Interface ValueLoaderFactory<T>
-
- All Known Implementing Classes:
ValueLoaderFactoryImpl
public interface ValueLoaderFactory<T>
Factory for the creation of aValueLoader
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValueLoader
createValueLoader(T object)
Creates theValueLoader
for the object.ValueName[]
getValueNames()
Obtains the listing ofValueName
instances that can be loaded.
-
-
-
Method Detail
-
createValueLoader
ValueLoader createValueLoader(T object) throws java.lang.Exception
Creates theValueLoader
for the object.- Parameters:
object
- Object to have values loaded onto it.- Returns:
ValueLoader
for the object.- Throws:
java.lang.Exception
- If fails to create theValueLoader
.
-
-