1 package com.icl.saxon.expr; 2 3 4 /** 5 * A LastPositionFinder is an object used by the Context to locate the last position in the 6 * context node list. 7 */ 8 9 public interface LastPositionFinder { 10 11 /** 12 * Get the last position 13 */ 14 15 public int getLastPosition() throws XPathException; 16 17 } 18 19 // 20 // The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License"); 21 // you may not use this file except in compliance with the License. You may obtain a copy of the 22 // License at http://www.mozilla.org/MPL/ 23 // 24 // Software distributed under the License is distributed on an "AS IS" basis, 25 // WITHOUT WARRANTY OF ANY KIND, either express or implied. 26 // See the License for the specific language governing rights and limitations under the License. 27 // 28 // The Original Code is: all this file. 29 // 30 // The Initial Developer of the Original Code is 31 // Michael Kay of International Computers Limited (mhkay@iclway.co.uk). 32 // 33 // Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved. 34 // 35 // Contributor(s): none. 36 // 37