Class DocumentAnalyzer.ProcessingThread

  • All Implemented Interfaces:
    java.lang.Runnable
    Enclosing class:
    DocumentAnalyzer

    class DocumentAnalyzer.ProcessingThread
    extends java.lang.Thread
    The Class ProcessingThread.
    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.lang.Thread

        java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) java.lang.String encoding
      The encoding.
      (package private) java.io.File inputDir
      The input dir.
      (package private) java.lang.String inputFileFormat
      The input file format.
      (package private) java.lang.String language
      The language.
      (package private) java.lang.Boolean lenient
      The lenient.
      (package private) java.io.File outputDir
      The output dir.
      (package private) java.io.File taeSpecifierFile
      The tae specifier file.
      (package private) java.lang.String xmlTag
      The xml tag.
      • Fields inherited from class java.lang.Thread

        MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
    • Constructor Summary

      Constructors 
      Constructor Description
      ProcessingThread​(java.io.File inputDir, java.lang.String inputFileFormat, java.lang.Boolean lenient, java.io.File outputDir, java.io.File taeSpecifierFile, java.lang.String xmlTag, java.lang.String language, java.lang.String encoding)
      Instantiates a new processing thread.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void run()  
      • Methods inherited from class java.lang.Thread

        activeCount, checkAccess, clone, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield
      • Methods inherited from class java.lang.Object

        equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • inputDir

        java.io.File inputDir
        The input dir.
      • inputFileFormat

        java.lang.String inputFileFormat
        The input file format.
      • outputDir

        java.io.File outputDir
        The output dir.
      • taeSpecifierFile

        java.io.File taeSpecifierFile
        The tae specifier file.
      • xmlTag

        java.lang.String xmlTag
        The xml tag.
      • language

        java.lang.String language
        The language.
      • encoding

        java.lang.String encoding
        The encoding.
      • lenient

        java.lang.Boolean lenient
        The lenient.
    • Constructor Detail

      • ProcessingThread

        ProcessingThread​(java.io.File inputDir,
                         java.lang.String inputFileFormat,
                         java.lang.Boolean lenient,
                         java.io.File outputDir,
                         java.io.File taeSpecifierFile,
                         java.lang.String xmlTag,
                         java.lang.String language,
                         java.lang.String encoding)
        Instantiates a new processing thread.
        Parameters:
        inputDir - the input dir
        inputFileFormat - the input file format
        lenient - the lenient
        outputDir - the output dir
        taeSpecifierFile - the tae specifier file
        xmlTag - the xml tag
        language - the language
        encoding - the encoding
    • Method Detail

      • run

        public void run()
        Specified by:
        run in interface java.lang.Runnable
        Overrides:
        run in class java.lang.Thread