1 /*******************************************************************************
2 * Copyright (c) 2012 Association for Decentralized Information Management in
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.browsing.ui.swt;
14 import org.eclipse.ui.IWorkbenchSite;
15 import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;
16 import org.simantics.db.Resource;
17 import org.simantics.db.exception.DatabaseException;
18 import org.simantics.db.management.ISessionContext;
20 public abstract class ModelledActionImpl<T> implements ModelledAction {
22 @SuppressWarnings("unused")
23 private Resource configuration;
24 private WidgetSupport support;
26 public ModelledActionImpl(Resource configuration) {
27 this.configuration = configuration;
30 public abstract void run(T input);
32 @SuppressWarnings("unchecked")
33 protected <T2> T2 getParameter(String uri) {
35 return (T2)support.getParameter(uri);
40 public Runnable create(IWorkbenchSite site, ISessionContext context, final WidgetSupport support) throws DatabaseException {
42 this.support = support;
44 return new Runnable() {
48 @SuppressWarnings("unchecked")
49 T input = (T)support.getInput();
51 ModelledActionImpl.this.run(input);