emolib.eks.anlw
Class DimentionsANLW

java.lang.Object
  extended by emolib.eks.anlw.DimentionsANLW

public class DimentionsANLW
extends java.lang.Object

The DimentionsANLW class is a construct that holds the emotional dimensions of a word stem found in the ANLW database.

Author:
Alexandre Trilla (atrilla@salle.url.edu)

Constructor Summary
DimentionsANLW()
          Constructs an empty DimentionsANLW object.
DimentionsANLW(java.lang.String inputStemKey, float inputValence, float inputActivation, float inputControl, java.lang.String inputCategory)
          Constructs and fills a DimentionsANLW object.
 
Method Summary
 float getActivation()
          Gets the activation of the object.
 java.lang.String getCategory()
          Gets the word-class of the object.
 float getControl()
          Gets the control of the object.
 java.lang.String getStemKey()
          Gets the stem of the object.
 float getValence()
          Gets the valence of the object.
 void setActivation(float inputActivation)
          Sets the activation of the object.
 void setCategory(java.lang.String wordClassToBeSet)
          Sets the word-class of the object.
 void setControl(float inputControl)
          Sets the control of the object.
 void setStemKey(java.lang.String inputStemKey)
          Sets the stem of the object.
 void setValence(float inputValence)
          Sets the valence of the object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DimentionsANLW

public DimentionsANLW()
Constructs an empty DimentionsANLW object.


DimentionsANLW

public DimentionsANLW(java.lang.String inputStemKey,
                      float inputValence,
                      float inputActivation,
                      float inputControl,
                      java.lang.String inputCategory)
Constructs and fills a DimentionsANLW object.

Parameters:
inputValence - The valence of the word stem.
inputActivation - The activation of the word stem.
inputControl - The control of the word stem.
inputCategory - The class of word.
Method Detail

setStemKey

public void setStemKey(java.lang.String inputStemKey)
Sets the stem of the object.

Parameters:
inputStemKey - The stem to be set.

getStemKey

public java.lang.String getStemKey()
Gets the stem of the object.

Returns:
The stem of the object.

setValence

public void setValence(float inputValence)
Sets the valence of the object.

Parameters:
inputValence - The valence to be set.

getValence

public float getValence()
Gets the valence of the object.

Returns:
The valence of the object.

setActivation

public void setActivation(float inputActivation)
Sets the activation of the object.

Parameters:
inputActivation - The activation to be set.

getActivation

public float getActivation()
Gets the activation of the object.

Returns:
The activation of the object.

setControl

public void setControl(float inputControl)
Sets the control of the object.

Parameters:
inputControl - The control to be set.

getControl

public float getControl()
Gets the control of the object.

Returns:
The control of the object.

setCategory

public void setCategory(java.lang.String wordClassToBeSet)
Sets the word-class of the object.

Parameters:
wordClassToBeSet - The word-class to be set.

getCategory

public java.lang.String getCategory()
Gets the word-class of the object.

Returns:
The word-class of the object.