All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.objectweb.fractal.bf.adl.common.Parameter Maven / Gradle / Ivy

There is a newer version: 0.9
Show newest version
/**
 * 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