01: /*
02: * $Id: OutputKeys.java,v 1.4 2001/11/02 22:07:45 db Exp $
03: * Copyright (C) 2001 Andrew Selkirk
04: *
05: * This file is part of GNU JAXP, a library.
06: *
07: * GNU JAXP is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU General Public License as published by
09: * the Free Software Foundation; either version 2 of the License, or
10: * (at your option) any later version.
11: *
12: * GNU JAXP is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15: * GNU General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public License
18: * along with this program; if not, write to the Free Software
19: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20: *
21: * As a special exception, if you link this library with other files to
22: * produce an executable, this library does not by itself cause the
23: * resulting executable to be covered by the GNU General Public License.
24: * This exception does not however invalidate any other reasons why the
25: * executable file might be covered by the GNU General Public License.
26: */
27: package javax.xml.transform;
28:
29: /**
30: * Provides names for XSLT output attributes.
31: * @author Andrew Selkirk
32: * @version 1.0
33: */
34: public class OutputKeys {
35:
36: //-------------------------------------------------------------
37: // Constants --------------------------------------------------
38: //-------------------------------------------------------------
39:
40: public static final String CDATA_SECTION_ELEMENTS = "cdata-section-elements";
41: public static final String DOCTYPE_PUBLIC = "doctype-public";
42: public static final String DOCTYPE_SYSTEM = "doctype-system";
43: public static final String ENCODING = "encoding";
44: public static final String INDENT = "indent";
45: public static final String MEDIA_TYPE = "media-type";
46: public static final String METHOD = "method";
47: public static final String OMIT_XML_DECLARATION = "omit-xml-declaration";
48: public static final String STANDALONE = "standalone";
49: public static final String VERSION = "version";
50:
51: //-------------------------------------------------------------
52: // Initialization ---------------------------------------------
53: //-------------------------------------------------------------
54:
55: private OutputKeys() {
56: } // OutputKeys()
57:
58: } // OutputKeys
|