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

import org.openslx.dozmod.gui.helper.I18n;
import org.openslx.dozmod.gui.wizard.Wizard;
import org.openslx.dozmod.gui.wizard.WizardPage;

public class LectureRestrictionPageLayout extends WizardPage {

	/**
	 * Version for serialization.
	 */
	private static final long serialVersionUID = 5529458984966765682L;

	public LectureRestrictionPageLayout(Wizard wizard) {
		super(wizard, I18n.PAGE_LAYOUT.getString("LectureRestriction.WizardPage.title"));
	}

}