Interface PropertyEvaluator
-
- All Known Implementing Classes:
DefaultPropertyEvaluator
public interface PropertyEvaluator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<? extends EvaluatedRow<?,?>>load(java.lang.String resourceId)Method which loads a given resource.java.util.Collection<? extends EvaluatedRow<?,?>>load(java.lang.String resourceId, java.lang.String key)Method which loads a given resource.voidsetRowEvaluator(RowsEvaluator<? extends EvaluatedRow<?,?>,?> rowEvaluator)
-
-
-
Method Detail
-
load
java.util.Collection<? extends EvaluatedRow<?,?>> load(java.lang.String resourceId)
Method which loads a given resource. The resource is a identifier used to build a physical path to property file containing localized attribute values. Method returns collection of evaluated rows. SeeEvaluatedRowfor more details.
-
load
java.util.Collection<? extends EvaluatedRow<?,?>> load(java.lang.String resourceId, java.lang.String key)
Method which loads a given resource. The resource is a identifier used to build a physical path to property file containing localized attribute values. Adds additional key for filtering out localized properties not matching given type. Method returns collection of evaluated rows. SeeEvaluatedRowfor more details.
-
setRowEvaluator
void setRowEvaluator(RowsEvaluator<? extends EvaluatedRow<?,?>,?> rowEvaluator)
-
-