blob: eaaa1b0114640f167cfd2eb5e2bced0c92917986 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.sdk.ui.wizard.menu;
import org.eclipse.jdt.core.IType;
import org.eclipse.scout.sdk.Texts;
import org.eclipse.scout.sdk.ui.internal.ScoutSdkUi;
import org.eclipse.scout.sdk.ui.wizard.AbstractWorkspaceWizard;
import org.eclipse.scout.sdk.util.type.TypeUtility;
public class MenuNewWizard extends AbstractWorkspaceWizard {
private MenuNewWizardPage m_page1;
private IType m_declaringType;
public MenuNewWizard() {
setWindowTitle(Texts.get("NewMenu"));
}
public void initWizard(IType declaringType) {
m_declaringType = declaringType;
m_page1 = new MenuNewWizardPage(getDeclaringType());
addPage(m_page1);
}
public void setSuperType(IType superType) {
m_page1.setSuperType(superType);
}
/**
* @return the declaringType
*/
public IType getDeclaringType() {
return m_declaringType;
}
@Override
protected void postFinishDisplayThread() {
IType createdField = m_page1.getCreatedMenu();
if (TypeUtility.exists(createdField)) {
ScoutSdkUi.showJavaElementInEditor(createdField, false);
}
}
}