summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureCreationPage.java
blob: 23abdab906a056b690d52984928baa2906f27f23 (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
26
27
28
29
package org.openslx.dozmod.gui.wizard.page;

import org.apache.log4j.Logger;
import org.eclipse.swt.widgets.Composite;
import org.openslx.dozmod.gui.wizard.layout.LectureCreationPageLayout;

public class LectureCreationPage extends LectureCreationPageLayout {
	
	protected boolean editExistingLecture;
	private final static Logger LOGGER = Logger.getLogger(LectureCreationPage.class);


	/**
	 * Page for creating lectures
	 * 
	 * @param editExistingLecture whether to edit existing lecture or create new
	 *            one
	 */
	public LectureCreationPage(boolean editExistingLecture) {
		super();
		this.editExistingLecture = editExistingLecture;

	}

	@Override
	public void createControl(Composite parent) {
		super.createControl(parent);
	}
}