 

public class UBLecture
{
	UBRoom room;
	String name;

	public UBLecture(UBRoom room, String name)
	{
		this.room = room;
		this.name = name;
	}
}