view bindings/java/src/org/omras2/Result.java @ 727:4d9e4ff0a9cd

* Now produces results - a Vector of Result objects * Handles includeKeys / excludeKeys correctly
author mas01mj
date Mon, 26 Jul 2010 14:58:13 +0000
parents
children a9978a6d0bb3
line wrap: on
line source
package org.omras2;
import lombok.Getter;

public class Result
{
	@Getter String key;
	@Getter int ipos;
	@Getter int qpos;
	@Getter double distance;

	public Result(String key, double distance, int ipos, int qpos)
	{
		this.key = key;
		this.distance = distance;
		this.ipos = ipos;
		this.qpos = qpos;
	}
}