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

import java.util.HashMap;

/**
 * @author Bernd Bohnet, 20.09.2009
 *
 *
 */
public interface IEncoderPlus extends IEncoder {

	final public static String NONE = "<None>";

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

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