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
  • ..
  • data
  • IEncoder.java
  • Dependency Parser split into two versions: basic and experimental
    d104f60d
    Jan Lupa authored
    2016-08-11 03:07:01 +0200  
    Browse Code ยป
IEncoder.java 365 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 24 25 26
/**
 * 
 */
package is2.data;

import java.util.HashMap;

/**
 * @author Bernd Bohnet, 20.09.2009
 * 
 * 
 */
public interface IEncoder {
	public int getValue(String a, String v);

	/**
	 * @param spath
	 * @param substring
	 */
//	public int register(String spath, String substring);

	/**
	 * @return
	 */
//	public HashMap<String,Integer> getFeatureCounter();
}