1 package net.sf.saxon.query; 2 3 import javax.xml.transform.SourceLocator; 4 5 /** 6 * This interface represents the union of global variable declarations and function declarations in XQuery 7 * modules 8 */ 9 public interface Declaration extends SourceLocator { 10 } 11 12 // 13 // The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License"); 14 // you may not use this file except in compliance with the License. You may obtain a copy of the 15 // License at http://www.mozilla.org/MPL/ 16 // 17 // Software distributed under the License is distributed on an "AS IS" basis, 18 // WITHOUT WARRANTY OF ANY KIND, either express or implied. 19 // See the License for the specific language governing rights and limitations under the License. 20 // 21 // The Original Code is: all this file. 22 // 23 // The Initial Developer of the Original Code is Michael H. Kay 24 // 25 // Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved. 26 // 27 // Contributor(s): none 28 // 29