Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

recoin.group
Interface ComponentSupport  view ComponentSupport download ComponentSupport.java

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
ComponentSupportImpl, ComponentSupportView

public interface ComponentSupport
extends java.io.Serializable

The ComponentSupport interface forms the superclass for all support interfaces in RECOIN.

These support interfaces are used to provide methods which allow Component objects to access and manipulate the data of the classes implementing these interfaces. Any class that needs to be processed by a Component object has to implement a subclass of this interface in order to be recognized and for the ComponentWorker to extract the necessary data. The class implements the java.io.Serializable interface in order to be transmitted over a network.

Version:
0.2.9

Method Summary
 java.lang.String getChainID()
          Returns the chain ID of the ComponentSupport.
 java.lang.String getClassname()
          Returns the classname of the ComponentSupport.
 java.lang.String getDescription()
          Returns a description of the ComponentSupport.
 int getID()
          Returns the unique ID of the ComponentSupport.
 java.lang.String getName()
          Returns the name of the ComponentSupport.
 void setChainID(java.lang.String chainID)
          Sets the chain ID of the ComponentSupport to the specified one.
 void setClassname(java.lang.String classname)
          Sets the classname of the ComponentSupport to the specified one.
 void setDescription(java.lang.String description)
          Sets the description of the ComponentSupport to the specified one.
 void setName(java.lang.String name)
          Sets the name of the ComponentSupport to the specified one.
 

Method Detail

getChainID

public java.lang.String getChainID()
Returns the chain ID of the ComponentSupport.


getClassname

public java.lang.String getClassname()
Returns the classname of the ComponentSupport.


getDescription

public java.lang.String getDescription()
Returns a description of the ComponentSupport.


getID

public int getID()
Returns the unique ID of the ComponentSupport.


getName

public java.lang.String getName()
Returns the name of the ComponentSupport.


setChainID

public void setChainID(java.lang.String chainID)
Sets the chain ID of the ComponentSupport to the specified one.


setClassname

public void setClassname(java.lang.String classname)
Sets the classname of the ComponentSupport to the specified one.


setDescription

public void setDescription(java.lang.String description)
Sets the description of the ComponentSupport to the specified one.


setName

public void setName(java.lang.String name)
Sets the name of the ComponentSupport to the specified one.