blob: c95956506dc3c90d3302587a3d025c59b87e2a5f [file] [log] [blame]
/*
* Copyright (c) 2006 Eclipse.org
*
* 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:
* Dmitry Stadnik - initial API and implementation
*/
package org.eclipse.gmf.internal.codegen.dashboard;
import org.eclipse.gmf.bridge.ui.dashboard.DashboardAction;
import org.eclipse.gmf.bridge.ui.dashboard.DashboardFacade;
import org.eclipse.gmf.bridge.ui.dashboard.DashboardState;
import org.eclipse.gmf.internal.codegen.popup.actions.ExecuteTemplatesOperation;
/**
* @author dstadnik
*/
public class GenerateDEAction implements DashboardAction {
private DashboardFacade context;
public void init(DashboardFacade context) {
this.context = context;
}
public boolean isEnabled() {
DashboardState state = context.getState();
if (context.isStrict()) {
if (state.getDM() == null || state.getDGM() == null) {
return false;
}
}
return state.getGM() != null;
}
public void run() {
ExecuteTemplatesOperation op = new ExecuteTemplatesOperation();
op.setGenModelURI(context.getState().getGM());
op.run();
}
}