Uses of Interface
kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.PosProcessor

Packages that use PosProcessor
kr.ac.kaist.swrc.jhannanum.hannanum   
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 PosProcessor in kr.ac.kaist.swrc.jhannanum.hannanum
 

Fields in kr.ac.kaist.swrc.jhannanum.hannanum declared as PosProcessor
private  PosProcessor[] Workflow.posProcessors
          The third phase, supplement plug-ins, pos processors.
 

Methods in kr.ac.kaist.swrc.jhannanum.hannanum with parameters of type PosProcessor
 void Workflow.appendPosProcessor(PosProcessor plugin, java.lang.String configFile)
          Appends the POS processor plug-in, which is the supplement plug-in on the third phase, on the work flow.
 

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

Classes in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.NounExtractor that implement PosProcessor
 class NounExtractor
          This plug-in extracts the morphemes recognized as a noun after Part Of Speech tagging was done.
 

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

Classes in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult09 that implement PosProcessor
 class SimplePOSResult09
          This plug-in changes the detailed POS tagging results to be simple.
 

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

Classes in kr.ac.kaist.swrc.jhannanum.plugin.SupplementPlugin.PosProcessor.SimplePOSResult22 that implement PosProcessor
 class SimplePOSResult22
          This plug-in changes the detailed POS tagging analysis results to be simple.
 

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

Fields in kr.ac.kaist.swrc.jhannanum.thread declared as PosProcessor
private  PosProcessor PosProcThread.posProcessor
          the POS processor plug-in
 

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