]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.ltk/src/org/simantics/ltk/ISource.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.ltk / src / org / simantics / ltk / ISource.java
1 package org.simantics.ltk;\r
2 \r
3 import java.io.IOException;\r
4 import java.io.InputStream;\r
5 \r
6 public interface ISource {\r
7         String getName();\r
8         InputStream open() throws IOException;  \r
9         int length() throws IOException;\r
10         int startPos();\r
11         int startLine();\r
12 }\r