Uses of Class
cdx.scorebot.util.translator.TranslationFailedException

Packages that use TranslationFailedException
cdx.scorebot.app.configurer Contains classes related to the Configurer. 
cdx.scorebot.app.util Contains utility classes whose primary purpose is to maintain information about services, tests, test options, and test returns for other GUIs. 
cdx.scorebot.util.swing.binding Extensions of Java Swing components which "bind" to objects so that the object's value is automatically synchronized to the component's value. 
cdx.scorebot.util.translator Contains classes which define translations between one type and another. 
 

Uses of TranslationFailedException in cdx.scorebot.app.configurer
 

Methods in cdx.scorebot.app.configurer that throw TranslationFailedException
 java.lang.String TestItemNameTranslator.translate2(java.lang.String valueToTranslate)
          returns valueToTranslate if it isn't already the name of a TestItem
 

Uses of TranslationFailedException in cdx.scorebot.app.util
 

Methods in cdx.scorebot.app.util that throw TranslationFailedException
 void ResultInfo.setIdentifier(java.lang.String identifier)
          sets the name of the option used in the scoring language
 void OptionInfo.setIdentifier(java.lang.String identifier)
          sets the name of the option used in the scoring language
 

Uses of TranslationFailedException in cdx.scorebot.util.swing.binding
 

Methods in cdx.scorebot.util.swing.binding that throw TranslationFailedException
 TO Binding.getTranslatedValue()
          gets the translated value from the value stored in the object
 void Binding.setFromTranslatedValue(TO value)
          sets the actual value from the specified value to be translated
 

Uses of TranslationFailedException in cdx.scorebot.util.translator
 

Methods in cdx.scorebot.util.translator that return TranslationFailedException
 TranslationFailedException TypeTranslator.getLastException()
          gets the last exception thrown when the translation was attempted (null if none have been thown)
 

Methods in cdx.scorebot.util.translator that throw TranslationFailedException
 TO TranslatorMulti.translate1(FROM valueToTranslate)
          gets the TO representation of the specified object FROM
abstract  TYPE2 TypeTranslator.translate1(TYPE1 valueToTranslate)
          gets the TYPE2 representation of the item
 java.lang.Integer TranslatorTimeString.translate2(java.lang.String valueToTranslate)
          Gets the Integer representation of the specified String in terms of the seconds in the base unit.
 T TranslatorObjectClassName.translate2(java.lang.String valueToTranslate)
          gets the Object representation of the specified String
 java.lang.Integer TranslatorIntegerString.translate2(java.lang.String valueToTranslate)
          gets the Integer representation of the specified String
 T TranslatorInstanceString.translate2(java.lang.String valueToTranslate)
          gets the T representation of the specified String
 java.lang.String TranslatorIdentifierString.translate2(java.lang.String valueToTranslate)
          Checks to see if the specified valueToTranslate is valid identifier
 java.lang.Double TranslatorDoubleString.translate2(java.lang.String valueToTranslate)
          gets the Double representation of the specified String
 java.lang.Boolean TranslatorBooleanString.translate2(java.lang.String valueToTranslate)
          gets the Boolean representation of the specified String
 FROM TranslatorMulti.translate2(TO valueToTranslate)
          gets the FROM representation of the specified TO object
abstract  TYPE1 TypeTranslator.translate2(TYPE2 valueToTranslate)
          gets the TYPE1 representation of the item