summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/LectureRoomSelectionPageLayout.java
blob: b0c00ea75322958ba732f9c6bb88eb9f98f99539 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.openslx.dozmod.gui.wizard.layout;

import org.apache.log4j.Logger;
import org.openslx.dozmod.gui.control.RoomSelector;
import org.openslx.dozmod.gui.helper.GridManager;
import org.openslx.dozmod.gui.wizard.Wizard;
import org.openslx.dozmod.gui.wizard.WizardPage;

@SuppressWarnings("serial")
public class LectureRoomSelectionPageLayout extends WizardPage {

	private final static Logger LOGGER = Logger.getLogger(LectureRoomSelectionPageLayout.class);

	protected RoomSelector roomSelector = new RoomSelector();

	public LectureRoomSelectionPageLayout(Wizard wizard) {
		super(wizard, "Raumauswahl");
		setDescription("Bitte wählen Sie die Räume für diese Veranstaltung aus");
		GridManager grid = new GridManager(this, 1);
		grid.add(roomSelector).fill(true, true).expand(true, true);
		grid.finish(false);
	}
}