file2xliff4j
Class MifImporter.NonFrameRomanUnescaper

java.lang.Object
  extended by java.lang.Thread
      extended by file2xliff4j.MifImporter.NonFrameRomanUnescaper
All Implemented Interfaces:
java.lang.Runnable
Enclosing class:
MifImporter

public class MifImporter.NonFrameRomanUnescaper
extends java.lang.Thread

This class reads from a non-FrameRoman-encoded (likely) input stream and echos the input to an output stream, unescaping MIF characters of the format "\xab " (where a and b represent hex digits). Note that it extends Thread, so that it can be part of a Pipe.


Nested Class Summary
 
Nested classes/interfaces inherited from class java.lang.Thread
java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler
 
Field Summary
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
MifImporter.NonFrameRomanUnescaper(java.io.BufferedInputStream in, java.io.PrintStream out)
          Constructor for a NonFrameRomanUnescaper
 
Method Summary
 void run()
          This starts a thread that does the actual processing.
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MifImporter.NonFrameRomanUnescaper

public MifImporter.NonFrameRomanUnescaper(java.io.BufferedInputStream in,
                                          java.io.PrintStream out)
Constructor for a NonFrameRomanUnescaper

Parameters:
out - A Writer that I write to
in - A Reader that I read from.
Method Detail

run

public void run()
This starts a thread that does the actual processing.

Specified by:
run in interface java.lang.Runnable
Overrides:
run in class java.lang.Thread