things.data.language
Interface Translator

All Known Implementing Classes:
WordDictionary

public interface Translator

Translation interface.

THIS PACKAGE WAS ABANDONED IN FAVOR OF ANOTHER PROJECT

Version:
1.0

Version History

EPG - Initial - 10 MAY 06
 
Author:
Erich P. Gatejen

Method Summary
 java.lang.String translate(java.lang.String word)
          Translate a word.
 

Method Detail

translate

java.lang.String translate(java.lang.String word)
                           throws java.lang.Throwable
Translate a word. It will be the same size unless it exceeds a maximum size (as defined by the implementation) in which case the translated word of the maximum size.

Parameters:
word - The word to translate.
Returns:
the translated word or null if passed null.
Throws:
java.lang.Throwable


Things.