![JAR search and dependency download from the Maven repository](/logo.png)
org.objectweb.fractal.bf.adl.common.Parameter 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 is a name-value pair. A parameter element can be used to configure
* a certain binding element.
*
*/
public interface Parameter
{
String getName();
void setName(String arg);
String getValue();
void setValue(String arg);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy