Examples of IsLab()


Examples of Core.Room.IsLab()

        }
      }
    }
    Room room = Configuration.GetInstance().GetRoomById(roomId);
    g.drawString("Room: " + room.GetName().substring(1), offsetX + 10, offsetY + 20);
    String str = String.format("Lab: %c", room.IsLab() ? 'Y' : 'N');
    g.drawString(str, offsetX + 10, offsetY+40);
    str = String.format( "Seats: %d", room.GetNumberOfSeats());
    g.drawString(str, offsetX + 10, offsetY + 60);
   
    if(_schedule != null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.