org.objectweb.fractal.bf.adl.binder.BinderBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fractal-bf-adl Show documentation
Show all versions of fractal-bf-adl Show documentation
Extend Fractal-ADL to specify binding protocols.
package org.objectweb.fractal.bf.adl.binder;
import java.util.List;
import org.objectweb.fractal.bf.BindingFactoryException;
import org.objectweb.fractal.bf.adl.common.Parameter;
/**
* A builder for binders
*/
public interface BinderBuilder
{
public void bind(String itfName, Object component,
List parameters, String type, Object context) throws BindingFactoryException;
}