KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > saxon > type > SchemaDeclaration


1 package net.sf.saxon.type;
2
3 /**
4  * This is a marker interface that acts as a surrogate for an object representing
5  * an element or attribute declaration.
6  * The real implementation of these declarations is available in the schema-aware
7  * version of the Saxon product.
8  */

9 public interface SchemaDeclaration {
10
11     public SchemaType getType();
12
13 }
14
15 //
16
// The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License");
17
// you may not use this file except in compliance with the License. You may obtain a copy of the
18
// License at http://www.mozilla.org/MPL/
19
//
20
// Software distributed under the License is distributed on an "AS IS" basis,
21
// WITHOUT WARRANTY OF ANY KIND, either express or implied.
22
// See the License for the specific language governing rights and limitations under the License.
23
//
24
// The Original Code is: all this file.
25
//
26
// The Initial Developer of the Original Code is Saxonica Limited
27
//
28
// Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved.
29
//
30
// Contributor(s): none
31
//
Popular Tags