Logo

GitLab

Sign in

Wojciech Jaworski / ENIAM

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ENIAM
  • ..
  • io
  • PSReader.java
  • Dependency Parser split into two versions: basic and experimental
    d104f60d
    Jan Lupa authored
    2016-08-11 03:07:01 +0200  
    Browse Code ยป
PSReader.java 267 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/**
 * 
 */
package is2.io;

import is2.data.PSTree;

/**
 * @author Dr. Bernd Bohnet, 07.02.2011
 * 
 * 
 */
public interface PSReader {

	public PSTree getNext();

	/**
	 * @param ps
	 * @param filter
	 */
	public void startReading(String ps, String[] filter);
	
}