Uses of Interface
net.ctdp.rfdynhud.util.ThreeLetterCodeGenerator

Packages that use ThreeLetterCodeGenerator
net.ctdp.rfdynhud.gamedata   
net.ctdp.rfdynhud.util   
 

Uses of ThreeLetterCodeGenerator in net.ctdp.rfdynhud.gamedata
 

Methods in net.ctdp.rfdynhud.gamedata that return ThreeLetterCodeGenerator
 ThreeLetterCodeGenerator ScoringInfo.getThreeLetterCodeGenerator()
          Gets the generator to use to generate three-letter-codes and short forms from driver names.
 

Methods in net.ctdp.rfdynhud.gamedata with parameters of type ThreeLetterCodeGenerator
 void ScoringInfo.setThreeLetterCodeGenerator(ThreeLetterCodeGenerator tlcGenerator)
          Sets the generator to use to generate three-letter-codes and short forms from driver names.
 

Uses of ThreeLetterCodeGenerator in net.ctdp.rfdynhud.util
 

Classes in net.ctdp.rfdynhud.util that implement ThreeLetterCodeGenerator
 class AbstractThreeLetterCodeGenerator
          Standard implementation of the ThreeLetterCodeGenerator.
 class ThreeLetterCodeGeneratorForename1Lastname2
          Standard implementation of the ThreeLetterCodeGenerator.
 class ThreeLetterCodeGeneratorLastname3
          Standard implementation of the ThreeLetterCodeGenerator.
 

Methods in net.ctdp.rfdynhud.util that return ThreeLetterCodeGenerator
static ThreeLetterCodeGenerator AbstractThreeLetterCodeGenerator.initThreeLetterCodeGenerator(java.lang.String className)
          Tries to instantiate the class given by name.
 

Methods in net.ctdp.rfdynhud.util with parameters of type ThreeLetterCodeGenerator
static java.lang.String ThreeLetterCodeManager.getShortForm(java.lang.String driverName, java.lang.Integer driverID, ThreeLetterCodeGenerator tlcGenerator)
          Gets the short form assigned to the given driver-name.
static java.lang.String ThreeLetterCodeManager.getThreeLetterCode(java.lang.String driverName, java.lang.Integer driverID, ThreeLetterCodeGenerator tlcGenerator)
          Gets the three-letter-code assigned to the given driver-name.
static void ThreeLetterCodeManager.updateThreeLetterCodes(java.io.File configFolder, ThreeLetterCodeGenerator tlcGenerator)