Logo

GitLab

Sign in

Wojciech Jaworski / ENIAM

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
b14f366d3736553d40e94d29cd005e7c919498d1
  • ENIAM
  • dependencyParser
  • mate-tools
  • src
  • is2
  • io
  • PSReader.java
  • Added mate parser's original code
    b14f366d
    Jan Lupa authored
    9 years ago  
    Browse Dir »
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);
	
}