This commit is contained in:
Madhura Bhave
2018-10-12 18:14:36 -07:00
parent 24a8461749
commit 8f91bbeffa
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ public interface ConfigurationPropertiesBindHandlerAdvisor {
/**
* Apply additional functionality to the source bind handler.
* @param bindHandler the source bind handler
* @return a replacement bind hander that delegates to the source and provides
* @return a replacement bind handler that delegates to the source and provides
* additional functionality
*/
BindHandler apply(BindHandler bindHandler);

View File

@@ -41,7 +41,7 @@ public interface BindHandler {
* @param name the name of the element being bound
* @param target the item being bound
* @param context the bind context
* @return {@code true} if binding should proceed
* @return the actual item that should be used for binding (may be {@code null})
*/
default <T> Bindable<T> onStart(ConfigurationPropertyName name, Bindable<T> target,
BindContext context) {