jcfunc
Class Description

java.lang.Object
  extended by jcfunc.Description

public class Description
extends java.lang.Object

Class Description stores data about some control sequence.


Field Summary
 int bPosition
          Index of sequence's first character.
 int ePosition
          Index of character followed after sequence's last character.
 CF function
          Control function of sequence.
 int[] parameters
          Parameters of control function, if any.
 
Constructor Summary
Description(int start, int end, CF func, int[] params)
          Constructor.
 
Method Summary
 java.lang.String toString()
          Returns string representation of this object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

bPosition

public int bPosition
Index of sequence's first character.


ePosition

public int ePosition
Index of character followed after sequence's last character.


function

public CF function
Control function of sequence.


parameters

public int[] parameters
Parameters of control function, if any.

Constructor Detail

Description

public Description(int start,
                   int end,
                   CF func,
                   int[] params)
Constructor.

Parameters:
start - index of sequence's first character
end - index of character followed after sequence's last character
func - control function of sequence
params - parameters of control function
Method Detail

toString

public java.lang.String toString()
Returns string representation of this object.

Overrides:
toString in class java.lang.Object