1 /***************************************************************************** 2 * Copyright (C) Zephyr Business Solutions Corp. All rights reserved. * 3 * ------------------------------------------------------------------------- * 4 * The software in this package is published under the terms of the BSD * 5 * style license a copy of which has been included with this distribution in * 6 * the LICENSE.txt file. * 7 *****************************************************************************/ 8 /* 9 * Created on Nov 20, 2004 10 * 11 * Author Ben Yu 12 */ 13 package jfun.parsec; 14 15 /** 16 * maps long to Object. 17 * <p> long -> a 18 * @author Ben Yu 19 * 20 * Nov 20, 2004 21 */ 22 public interface FromLong<R> extends java.io.Serializable{ 23 /** 24 * @param from the starting index of this character token. 25 * @param len the length of this token. 26 * @param l the long value. 27 * @return the object. 28 */ 29 R fromLong(int from, int len, long l); 30 } 31