KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > saxon > style > XSLImport


1 package net.sf.saxon.style;
2
3
4 /**
5 * xsl:import element in the stylesheet. <br>
6 */

7
8 public class XSLImport extends XSLGeneralIncorporate {
9
10     /**
11     * isImport() returns true if this is an xsl:import statement rather than an xsl:include
12     */

13
14     public boolean isImport() {
15         return true;
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 Michael H. Kay.
31
//
32
// Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved.
33
//
34
// Contributor(s): none.
35
//
36
Popular Tags