summaryrefslogblamecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/wizard/page/LectureCreationPage.java
blob: 23abdab906a056b690d52984928baa2906f27f23 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                           
                               





                                                                      
                                                                                         




                                     
                                                                                    









                                                                 
                                            

         
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);
	}
}