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