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

jadex.bridge.fipa.CMSSuspendComponent 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 CMSSuspendComponent of beanynizer_beans_fipa_default ontology.
 */
public class CMSSuspendComponent implements IComponentAction 
{
	//-------- attributes ----------

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy