summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/layout/LectureLocationSelectionPageLayout.java
blob: bd86e86ca183d68b9d26ee447620a3a630b50c04 (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
24
25
package org.openslx.dozmod.gui.wizard.layout;

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

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

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

	protected final LocationSelector ctlLocationSelector;

	public LectureLocationSelectionPageLayout(Wizard wizard) {
		super(wizard, I18n.PAGE_LAYOUT.getString("LectureLocationSelection.WizardPage.title"));
		setDescription(I18n.PAGE_LAYOUT.getString("LectureLocationSelection.WizardPage.description"));
		ctlLocationSelector = new LocationSelector();
		GridManager grid = new GridManager(this, 1);
		grid.add(ctlLocationSelector).fill(true, true).expand(true, true);
		grid.finish(false);
	}
}