org.objectweb.fractal.bf.adl.binder.BinderContainer 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;
/**
* This interface is for elements that support ..
* sub-nodes.
*/
public interface BinderContainer
{
Binder[] getBinders();
void addBinder(Binder binder);
void removeBinder(Binder binder);
}