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

Packages that use PlainSentence
kr.ac.kaist.swrc.jhannanum.hannanum   
kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.MorphAnalyzer   
kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.MorphAnalyzer.ChartMorphAnalyzer   
kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor   
kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor.InformalSentenceFilter   
kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor.SentenceSegmentor   
kr.ac.kaist.swrc.jhannanum.thread   
 

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

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

Uses of PlainSentence in kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.MorphAnalyzer
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.MorphAnalyzer with parameters of type PlainSentence
 SetOfSentences MorphAnalyzer.morphAnalyze(PlainSentence ps)
          It performs morphological analysis on the specified plain sentence, and returns the all analysis result where each plain eojeol has more than one morphologically analyzed eojeol.
 

Uses of PlainSentence in kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.MorphAnalyzer.ChartMorphAnalyzer
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.MajorPlugin.MorphAnalyzer.ChartMorphAnalyzer with parameters of type PlainSentence
 SetOfSentences ChartMorphAnalyzer.morphAnalyze(PlainSentence ps)
          Analyzes the specified plain sentence, and returns all the possible analysis results.
 

Uses of PlainSentence in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor that return PlainSentence
 PlainSentence PlainTextProcessor.doProcess(PlainSentence ps)
          It performs pre-processing of the plain text before the input text were delivered to the morphological analyzer.
 PlainSentence PlainTextProcessor.flush()
          It returns the text which has been stored in the internal buffer.
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor with parameters of type PlainSentence
 PlainSentence PlainTextProcessor.doProcess(PlainSentence ps)
          It performs pre-processing of the plain text before the input text were delivered to the morphological analyzer.
 

Uses of PlainSentence in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor.InformalSentenceFilter
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor.InformalSentenceFilter that return PlainSentence
 PlainSentence InformalSentenceFilter.doProcess(PlainSentence ps)
          It recognizes informal sentences in which an eojeol is quite long and some characters were repeated many times.
 PlainSentence InformalSentenceFilter.flush()
           
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor.InformalSentenceFilter with parameters of type PlainSentence
 PlainSentence InformalSentenceFilter.doProcess(PlainSentence ps)
          It recognizes informal sentences in which an eojeol is quite long and some characters were repeated many times.
 

Uses of PlainSentence in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor.SentenceSegmentor
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor.SentenceSegmentor that return PlainSentence
 PlainSentence SentenceSegmentor.doProcess(PlainSentence ps)
          It recognizes the end of each sentence and return the first sentence.
 PlainSentence SentenceSegmentor.flush()
           
 

Methods in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PlainTextProcessor.SentenceSegmentor with parameters of type PlainSentence
 PlainSentence SentenceSegmentor.doProcess(PlainSentence ps)
          It recognizes the end of each sentence and return the first sentence.
 

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

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

Constructor parameters in kr.ac.kaist.swrc.jhannanum.thread with type arguments of type PlainSentence
MorphAnalyzerThread(MorphAnalyzer ma, java.util.concurrent.LinkedBlockingQueue<PlainSentence> in, java.util.concurrent.LinkedBlockingQueue<SetOfSentences> out)
          Constructor.
PlainTextProcThread(PlainTextProcessor plainTextProcessor, java.util.concurrent.LinkedBlockingQueue<PlainSentence> in, java.util.concurrent.LinkedBlockingQueue<PlainSentence> out)
          Constructor.
PlainTextProcThread(PlainTextProcessor plainTextProcessor, java.util.concurrent.LinkedBlockingQueue<PlainSentence> in, java.util.concurrent.LinkedBlockingQueue<PlainSentence> out)
          Constructor.