01: package net.sf.saxon.style;
02:
03: import net.sf.saxon.tree.ElementWithAttributes;
04:
05: /**
06: * This element represents a top-level element in a user-defined namespace,
07: * or a child/descendant of such an element. It serves no useful purpose.
08: */
09:
10: public class DataElement extends ElementWithAttributes {
11:
12: }
13:
14: //
15: // The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License");
16: // you may not use this file except in compliance with the License. You may obtain a copy of the
17: // License at http://www.mozilla.org/MPL/
18: //
19: // Software distributed under the License is distributed on an "AS IS" basis,
20: // WITHOUT WARRANTY OF ANY KIND, either express or implied.
21: // See the License for the specific language governing rights and limitations under the License.
22: //
23: // The Original Code is: all this file.
24: //
25: // The Initial Developer of the Original Code is Michael H. Kay
26: //
27: // Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved.
28: //
29: // Contributor(s):
30: // Portions marked "e.g." are from Edwin Glaser (edwin@pannenleiter.de)
31: //
|