]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.graph/src/org/simantics/graph/query/Res.java
Option for exporting tg and pgraph with sharedlibrary
[simantics/platform.git] / bundles / org.simantics.graph / src / org / simantics / graph / query / Res.java
1 package org.simantics.graph.query;
2
3
4 /**
5  * A resource
6  * @author Hannu Niemistö
7  */
8 public interface Res {
9         
10         /** 
11          * Get a name or URI if available
12          *
13          * @return a name or URI
14          */
15         public String toString();
16         
17 }