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

jadex.bridge.modelinfo.NFPropertyInfo Maven / Gradle / Ivy

Go to download

Jadex bridge is a base package for kernels and platforms, i.e., it is used by both and provides commonly used interfaces and classes for active components and their management.

There is a newer version: 4.0.267
Show newest version
package jadex.bridge.modelinfo;

import java.util.List;

import jadex.bridge.ClassInfo;

/**
 *  Info struct for a nf property.
 */
public class NFPropertyInfo
{
	/** The property name. */
	protected String name;
	
	/** The property class. */
	protected ClassInfo clazz;

	/** The parameters (optional). */
	protected  List parameters;
	
	/**
	 *  Create a new property.
	 */
	public NFPropertyInfo()
	{
	}
	
	/**
	 *  Create a new property.
	 *  @param name The name.
	 *  @param clazz The clazz.
	 */
	public NFPropertyInfo(String name, ClassInfo clazz, List parameters)
	{
		this.name = name;
		this.clazz = clazz;
		this.parameters = parameters;
	}

	/**
	 *  Get the name.
	 *  @return The name.
	 */
	public String getName()
	{
		return name;
	}

	/**
	 *  Set the name.
	 *  @param name The name to set.
	 */
	public void setName(String name)
	{
		this.name = name;
	}

	/**
	 *  Get the clazz.
	 *  @return The clazz.
	 */
	public ClassInfo getClazz()
	{
		return clazz;
	}

	/**
	 *  Set the clazz.
	 *  @param clazz The clazz to set.
	 */
	public void setClazz(ClassInfo clazz)
	{
		this.clazz = clazz;
	}

	/**
	 *  Get the parameters.
	 *  @return The parameters
	 */
	public List getParameters()
	{
		return parameters;
	}
	
	/**
	 *  Set the parameters.
	 *  @param parameters The parameters to set
	 */
	public void setParameters(List parameters)
	{
		this.parameters = parameters;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy