jadex.bridge.fipa.CMSResumeComponent 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 AMSResumeComponent of beanynizer_beans_fipa_default ontology.
*/
public class CMSResumeComponent implements IComponentAction
{
//-------- attributes ----------
/** Attribute for slot componentidentifier. */
protected IComponentIdentifier componentidentifier;
//-------- constructors --------
/**
* Default Constructor.
* Create a new AMSResumeComponent
.
*/
public CMSResumeComponent()
{
}
/**
* Create a new AMSSuspendComponent
.
*/
public CMSResumeComponent(IComponentIdentifier componentidentifier)
{
this.componentidentifier = componentidentifier;
}
//-------- accessor methods --------
/**
* Get the componentidentifier of this AMSResumeComponent.
* @return componentidentifier
*/
public IComponentIdentifier getComponentIdentifier()
{
return this.componentidentifier;
}
/**
* Set the componentidentifier of this AMSResumeComponent.
* @param componentidentifier the value to be set
*/
public void setComponentIdentifier(IComponentIdentifier componentidentifier)
{
this.componentidentifier = componentidentifier;
}
//-------- additional methods --------
/**
* Get a string representation of this AMSResumeComponent.
* @return The string representation.
*/
public String toString()
{
return "CMSResumeComponent(" + ")";
}
}