com.dragome.forms.bindings.client.binding.BindingBuilderCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-form-bindings Show documentation
Show all versions of dragome-form-bindings Show documentation
Dragome SDK module: form bindings
package com.dragome.forms.bindings.client.binding;
/**
* This interface allows each builder to notify the binder when a new binding is created.
*/
public interface BindingBuilderCallback
{
void onBindingCreated(AbstractBinding binding, Object target);
}