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 3 strings to object. 17 * <p> CharSequence -> CharSequence -> CharSequence -> a 18 * @author Ben Yu 19 * 20 * Nov 20, 2004 21 */ 22 public interface FromString3<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 s1 1st string. 27 * @param s2 2nd string. 28 * @param s3 3rd string. 29 * @return the Object. 30 */ 31 R fromString3(int from, int len, String s1, String s2, String s3); 32 } 33