Exemplo n.º 1
0
 public static final void reset() {
   if (plxLogger != null) {
     plxLogger.reset();
   }
   random.reset();
   nameDictionary.reset();
 }
Exemplo n.º 2
0
 public static final PlxLogger getLogger(Class clazz) {
   if (plxLogger == null) {
     return new PlxLogger(clazz);
   }
   return plxLogger.get();
 }
Exemplo n.º 3
0
 public static RandomInterface getRandom() {
   return random.get();
 }
Exemplo n.º 4
0
 public static final NameDictionary getNameDictionary() {
   return nameDictionary.get();
 }