]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
0c628e9561bc506b448e3c77f03ecf3c6b975950
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2013 Association for Decentralized Information Management in\r
3  * Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     Semantum Oy - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.sysdyn.ui.properties.widgets.sensitivity;\r
13 \r
14 import java.util.HashMap;\r
15 \r
16 import org.eclipse.swt.widgets.Composite;\r
17 import org.simantics.browsing.ui.swt.widgets.impl.WidgetSupport;\r
18 import org.simantics.db.WriteGraph;\r
19 import org.simantics.db.exception.DatabaseException;\r
20 import org.simantics.db.management.ISessionContext;\r
21 \r
22 public interface IDistributionProperties {\r
23     \r
24     public Composite createContent(Composite parent, ISessionContext context, WidgetSupport support);\r
25     \r
26     public void getCachedValues(HashMap<String, String> cachedValues);\r
27     \r
28     public void applyCache(WriteGraph graph, HashMap<String, String> cachedValues) throws DatabaseException;\r
29 \r
30 }\r