org.objectweb.fractal.bf.adl.common.ParameterContainer 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.
/**
* Author: Valerio Schiavoni
*/
package org.objectweb.fractal.bf.adl.common;
/**
* A parameter container is an element that can
* contains parameter elements.
*
*/
public interface ParameterContainer
{
Parameter[] getParameters();
void addParameter(Parameter p);
void removeParameter(Parameter p);
}