blob: 757c03848fa77473cc7d09aef263f8853621153c [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.tablecolumn;
import org.eclipse.jdt.core.IType;
import org.eclipse.scout.sdk.Texts;
import org.eclipse.scout.sdk.ui.extensions.AbstractFormFieldWizard;
import org.eclipse.scout.sdk.ui.internal.ScoutSdkUi;
import org.eclipse.scout.sdk.ui.wizard.tablecolumn.TableColumnNewWizard.CONTINUE_OPERATION;
import org.eclipse.scout.sdk.util.type.TypeUtility;
/**
* <h3>SmartTableColumnNewWizard</h3> ...
*/
public class SmartTableColumnNewWizard extends AbstractFormFieldWizard {
private SmartTableColumnNewWizardPage m_page1;
private CONTINUE_OPERATION m_nextOperation;
public SmartTableColumnNewWizard(CONTINUE_OPERATION op) {
setWindowTitle(Texts.get("NewSmartTableColumn"));
m_nextOperation = op;
}
@Override
public void initWizard(IType declaringType) {
super.initWizard(declaringType);
m_page1 = new SmartTableColumnNewWizardPage(getDeclaringType(), m_nextOperation);
addPage(m_page1);
}
@Override
public void setSuperType(IType superType) {
m_page1.setSuperType(superType);
}
@Override
protected void postFinishDisplayThread() {
IType createdField = m_page1.getCreatedColumn();
if (TypeUtility.exists(createdField)) {
ScoutSdkUi.showJavaElementInEditor(createdField, false);
}
}
}