X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.browsing.ui.swt%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fswt%2Fwidgets%2Fimpl%2FWidgetSupportFactory.java;fp=bundles%2Forg.simantics.browsing.ui.swt%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fswt%2Fwidgets%2Fimpl%2FWidgetSupportFactory.java;h=eefca6f4d25cf072364da544565ffc32b930a924;hb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;hp=b87f15976bf693b55f95acad5536b3b5b5993bca;hpb=24e2b34260f219f0d1644ca7a138894980e25b14;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/impl/WidgetSupportFactory.java b/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/impl/WidgetSupportFactory.java index b87f15976..eefca6f4d 100644 --- a/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/impl/WidgetSupportFactory.java +++ b/bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/widgets/impl/WidgetSupportFactory.java @@ -1,82 +1,82 @@ -/******************************************************************************* - * Copyright (c) 2007, 2012 Association for Decentralized Information Management - * in Industry THTH ry. - * 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: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ -package org.simantics.browsing.ui.swt.widgets.impl; - -import java.util.concurrent.CopyOnWriteArrayList; - -import org.eclipse.jface.viewers.ISelection; -import org.eclipse.jface.viewers.StructuredSelection; -import org.simantics.Simantics; -import org.simantics.db.ReadGraph; -import org.simantics.db.Resource; -import org.simantics.db.management.ISessionContext; - -public class WidgetSupportFactory { - - public static WidgetSupport projectSupport() { - - return new WidgetSupport() { - - final private CopyOnWriteArrayList widgets = new CopyOnWriteArrayList(); - - @Override - public synchronized void register(Widget widget) { - widgets.add(widget); - } - - @Override - public void update(Widget widget) { - throw new Error("Not implemented."); - } - - @Override - public void update() { - throw new Error("Not implemented."); - } - - @Override - public T getInput() { - throw new Error("Not implemented."); - } - - @Override - public void finish() { - Resource project = Simantics.peekProjectResource(); - if(project == null) return; - ISelection input = new StructuredSelection(project); - fireInput(Simantics.getSessionContext(), input); - } - - public void fireInput(ISessionContext context, Object input) { - for(Widget widget : widgets) widget.setInput(context, input); - } - - @Override - public T getParameter(String key) { - throw new Error("Not implemented."); - } - - @Override - public void setParameter(String key, Object value) { - throw new Error("Not implemented."); - } - - @Override - public T getInput(ReadGraph graph) { - throw new Error("Not implemented."); - } - - }; - - } - -} +/******************************************************************************* + * Copyright (c) 2007, 2012 Association for Decentralized Information Management + * in Industry THTH ry. + * 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: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.browsing.ui.swt.widgets.impl; + +import java.util.concurrent.CopyOnWriteArrayList; + +import org.eclipse.jface.viewers.ISelection; +import org.eclipse.jface.viewers.StructuredSelection; +import org.simantics.Simantics; +import org.simantics.db.ReadGraph; +import org.simantics.db.Resource; +import org.simantics.db.management.ISessionContext; + +public class WidgetSupportFactory { + + public static WidgetSupport projectSupport() { + + return new WidgetSupport() { + + final private CopyOnWriteArrayList widgets = new CopyOnWriteArrayList(); + + @Override + public synchronized void register(Widget widget) { + widgets.add(widget); + } + + @Override + public void update(Widget widget) { + throw new Error("Not implemented."); + } + + @Override + public void update() { + throw new Error("Not implemented."); + } + + @Override + public T getInput() { + throw new Error("Not implemented."); + } + + @Override + public void finish() { + Resource project = Simantics.peekProjectResource(); + if(project == null) return; + ISelection input = new StructuredSelection(project); + fireInput(Simantics.getSessionContext(), input); + } + + public void fireInput(ISessionContext context, Object input) { + for(Widget widget : widgets) widget.setInput(context, input); + } + + @Override + public T getParameter(String key) { + throw new Error("Not implemented."); + } + + @Override + public void setParameter(String key, Object value) { + throw new Error("Not implemented."); + } + + @Override + public T getInput(ReadGraph graph) { + throw new Error("Not implemented."); + } + + }; + + } + +}