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

jadex.bridge.fipa.CMSDestroyComponent 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.fipa;

import jadex.bridge.IComponentIdentifier;

/**
 *  Java class for concept AMSDestroyComponent of beanynizer_beans_fipa_default ontology.
 */
public class CMSDestroyComponent implements IComponentAction
{
	//-------- attributes ----------

	/** Attribute for slot componentidentifier. */
	protected IComponentIdentifier componentidentifier;

	//-------- constructors --------

	/**
	 *  Default Constructor. 
* Create a new AMSDestroyComponent. */ public CMSDestroyComponent() { } /** * Create a new AMSDestroyComponent. */ public CMSDestroyComponent(IComponentIdentifier identifier) { this.componentidentifier = identifier; } //-------- accessor methods -------- /** * Get the componentidentifier of this AMSDestroyComponent. * @return componentidentifier */ public IComponentIdentifier getComponentIdentifier() { return this.componentidentifier; } /** * Set the componentidentifier of this AMSDestroyComponent. * @param componentidentifier the value to be set */ public void setComponentIdentifier(IComponentIdentifier componentidentifier) { this.componentidentifier = componentidentifier; } //-------- additional methods -------- /** * Get a string representation of this AMSDestroyComponent. * @return The string representation. */ public String toString() { return "CMSDestroyComponent(" + ")"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy