]> gerrit.simantics Code Review - simantics/platform.git/blob
1c329706107d98a4eada3e872ebb116c340541da
[simantics/platform.git] /
1 package org.simantics.document.swt.core.base;
2
3 import org.simantics.document.server.IEventCommand;
4 import org.simantics.document.server.JSONObject;
5 import org.simantics.document.server.client.WidgetManager;
6 import org.simantics.document.swt.core.SWTDocument;
7
8 public abstract class PropertyWidgetManager<W> implements WidgetManager<SWTDocument, W> {
9         
10         @Override
11         public String getProperty(SWTDocument document, JSONObject object, W widget, String property) {
12                 return null;
13         }
14         
15         @Override
16         public IEventCommand eventCommand(SWTDocument document, JSONObject object, W widget, String command) {
17             return null;
18         }
19
20 }