01: package net.sf.saxon.functions;
02:
03: /**
04: * This is a marker interface used to identify functions that are defined in XSLT rather
05: * than in XPath
06: */
07:
08: public interface XSLTFunction {
09: }
10:
11: //
12: // The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License");
13: // you may not use this file except in compliance with the License. You may obtain a copy of the
14: // License at http://www.mozilla.org/MPL/
15: //
16: // Software distributed under the License is distributed on an "AS IS" basis,
17: // WITHOUT WARRANTY OF ANY KIND, either express or implied.
18: // See the License for the specific language governing rights and limitations under the License.
19: //
20: // The Original Code is: all this file.
21: //
22: // The Initial Developer of the Original Code is Michael H. Kay
23: //
24: // Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved.
25: //
26: // Contributor(s): none.
27: //
|