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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy