Uses of Class
kr.ac.kaist.swrc.jhannanum.comm.Sentence

Packages that use Sentence
kr.ac.kaist.swrc.jhannanum.hannanum   
kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.PosTagger   
kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.PosTagger.HmmPosTagger   
kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor   
kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.NounExtractor   
kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult09   
kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult22   
kr.ac.kaist.swrc.jhannanum.thread   
 

Uses of Sentence in kr.ac.kaist.swrc.jhannanum.hannanum
 

Fields in kr.ac.kaist.swrc.jhannanum.hannanum with type parameters of type Sentence
(package private)  java.util.ArrayList<java.util.concurrent.LinkedBlockingQueue<Sentence>> Workflow.queuePhase3
          The communication queues for the third phase plug-ins.
 

Uses of Sentence in kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.PosTagger
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.PosTagger that return Sentence
 Sentence PosTagger.tagPOS(SetOfSentences sos)
          It performs POS tagging, which selects the most promising morphological analysis result of each eojeol, so that the final result is the morphologically analyzed sentence with the highest probability.
 

Uses of Sentence in kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.PosTagger.HmmPosTagger
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.PosTagger.HmmPosTagger that return Sentence
private  Sentence HMMTagger.end_sentence(SetOfSentences sos)
          Runs viterbi to get the final morphological analysis result which has the highest probability.
 Sentence HMMTagger.tagPOS(SetOfSentences sos)
           
 

Uses of Sentence in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor that return Sentence
 Sentence PosProcessor.doProcess(Sentence st)
          It performs post processing of POS tagging.
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor with parameters of type Sentence
 Sentence PosProcessor.doProcess(Sentence st)
          It performs post processing of POS tagging.
 

Uses of Sentence in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.NounExtractor
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.NounExtractor that return Sentence
 Sentence NounExtractor.doProcess(Sentence st)
          It extracts the morphemes which were recognized as noun after POS tagging.
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.NounExtractor with parameters of type Sentence
 Sentence NounExtractor.doProcess(Sentence st)
          It extracts the morphemes which were recognized as noun after POS tagging.
 

Uses of Sentence in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult09
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult09 that return Sentence
 Sentence SimplePOSResult09.doProcess(Sentence st)
          It changes the POS tagging result with 69 KAIST tags to the simplified result with 9 tags.
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult09 with parameters of type Sentence
 Sentence SimplePOSResult09.doProcess(Sentence st)
          It changes the POS tagging result with 69 KAIST tags to the simplified result with 9 tags.
 

Uses of Sentence in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult22
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult22 that return Sentence
 Sentence SimplePOSResult22.doProcess(Sentence st)
          It changes the morphological analysis result with 69 KAIST tags to the simplified result with 22 tags.
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult22 with parameters of type Sentence
 Sentence SimplePOSResult22.doProcess(Sentence st)
          It changes the morphological analysis result with 69 KAIST tags to the simplified result with 22 tags.
 

Uses of Sentence in kr.ac.kaist.swrc.jhannanum.thread
 

Fields in kr.ac.kaist.swrc.jhannanum.thread with type parameters of type Sentence
private  java.util.concurrent.LinkedBlockingQueue<Sentence> PosProcThread.in
          input queue
private  java.util.concurrent.LinkedBlockingQueue<Sentence> PosTaggerThread.out
          output queue
private  java.util.concurrent.LinkedBlockingQueue<Sentence> PosProcThread.out
          output queue
 

Constructor parameters in kr.ac.kaist.swrc.jhannanum.thread with type arguments of type Sentence
PosProcThread(PosProcessor posProcessor, java.util.concurrent.LinkedBlockingQueue<Sentence> in, java.util.concurrent.LinkedBlockingQueue<Sentence> out)
          Constructor.
PosProcThread(PosProcessor posProcessor, java.util.concurrent.LinkedBlockingQueue<Sentence> in, java.util.concurrent.LinkedBlockingQueue<Sentence> out)
          Constructor.
PosTaggerThread(PosTagger tagger, java.util.concurrent.LinkedBlockingQueue<SetOfSentences> in, java.util.concurrent.LinkedBlockingQueue<Sentence> out)
          Constructor.