Esempio n. 1
0
 public Panroom getCurrentRoom() {
   if (currentRoom == null) {
     try {
       currentRoom = getFirstRoom();
     } catch (final Exception e) {
       throw Pantil.toRuntimeException(e);
     }
   }
   initializingRoom = false;
   return currentRoom;
 }