]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.ui/src/org/simantics/ui/selection/JSONContentType.java
Provide classifications and datatype for Variable-based drag sources
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / selection / JSONContentType.java
1 package org.simantics.ui.selection;
2
3 import org.simantics.db.RequestProcessor;
4
5 public class JSONContentType implements WorkbenchSelectionContentType<String>  {
6
7         public RequestProcessor processor;
8         
9         public JSONContentType(RequestProcessor processor) {
10                 this.processor = processor;
11         }
12         
13 }