]> gerrit.simantics Code Review - simantics/platform.git/blob - selection/JSONContentType.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / 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 }