kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.MorphAnalyzer.ChartMorphAnalyzer
Class Trie.TNODE

java.lang.Object
  extended by kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.MorphAnalyzer.ChartMorphAnalyzer.Trie.TNODE
Enclosing class:
Trie

public class Trie.TNODE
extends java.lang.Object

This class is for nodes of trie structure.

Author:
Sangwon Park (hudoni@world.kaist.ac.kr), CILab, SWRC, KAIST

Field Summary
 int child_idx
          the index for the childern
 short child_size
          the size of children
 Trie.FREE free
          for managing free nodes
 java.util.LinkedList<Trie.INFO> info_list
          the list of morpheme information
 char key
          key - vowel, consonant, etc.
 
Constructor Summary
Trie.TNODE()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

key

public char key
key - vowel, consonant, etc.


child_size

public short child_size
the size of children


child_idx

public int child_idx
the index for the childern


info_list

public java.util.LinkedList<Trie.INFO> info_list
the list of morpheme information


free

public Trie.FREE free
for managing free nodes

Constructor Detail

Trie.TNODE

public Trie.TNODE()