blob: 5aeb0f5c61a8b2c5ba522e24d9262d5eb3e59479 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 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.executor;
import org.eclipse.jdt.core.IType;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.scout.sdk.ui.internal.view.outline.pages.project.shared.SharedContextPropertyTablePage;
import org.eclipse.scout.sdk.ui.wizard.beanproperty.SharedContextBeanPropertyNewWizard;
import org.eclipse.ui.INewWizard;
/**
* <h3>{@link SharedContextBeanPropertyNewExecutor}</h3>
*
* @author Matthias Villiger
* @since 4.1.0 10.10.2014
*/
public class SharedContextBeanPropertyNewExecutor extends AbstractWizardExecutor {
@Override
public INewWizard getNewWizardInstance() {
return new SharedContextBeanPropertyNewWizard();
}
@Override
public boolean canRun(IStructuredSelection selection) {
Object firstElement = selection.getFirstElement();
if (firstElement instanceof SharedContextPropertyTablePage) {
SharedContextPropertyTablePage sel = (SharedContextPropertyTablePage) firstElement;
IType serverSessionType = sel.getServerSession();
IType clientSessionType = sel.getClientSession();
return isEditable(clientSessionType) && isEditable(serverSessionType);
}
return false;
}
}