jadex.bridge.fipa.CMSDestroyComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform-bridge Show documentation
Show all versions of jadex-platform-bridge Show documentation
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.
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(" + ")";
}
}