jaxp/src/com/sun/org/apache/xml/internal/serialize/Method.java
changeset 12457 c348e06f0e82
parent 6 7f561c08de6b
child 25834 aba3efbf4ec5
equal deleted inserted replaced
12324:1d7e6da6adc8 12457:c348e06f0e82
       
     1 /*
       
     2  * reserved comment block
       
     3  * DO NOT REMOVE OR ALTER!
       
     4  */
       
     5 /*
       
     6  * Copyright 1999-2002,2004 The Apache Software Foundation.
       
     7  *
       
     8  * Licensed under the Apache License, Version 2.0 (the "License");
       
     9  * you may not use this file except in compliance with the License.
       
    10  * You may obtain a copy of the License at
       
    11  *
       
    12  *      http://www.apache.org/licenses/LICENSE-2.0
       
    13  *
       
    14  * Unless required by applicable law or agreed to in writing, software
       
    15  * distributed under the License is distributed on an "AS IS" BASIS,
       
    16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    17  * See the License for the specific language governing permissions and
       
    18  * limitations under the License.
       
    19  */
       
    20 
       
    21 
       
    22 package com.sun.org.apache.xml.internal.serialize;
       
    23 
       
    24 
       
    25 /**
       
    26  * @author <a href="mailto:arkin@intalio.com">Assaf Arkin</a>
       
    27  * @see OutputFormat
       
    28  */
       
    29 public final class Method
       
    30 {
       
    31 
       
    32 
       
    33     /**
       
    34      * The output method for XML documents.
       
    35      */
       
    36     public static final String XML = "xml";
       
    37 
       
    38 
       
    39     /**
       
    40      * The output method for HTML documents.
       
    41      */
       
    42     public static final String HTML = "html";
       
    43 
       
    44 
       
    45     /**
       
    46      * The output method for HTML documents as XHTML.
       
    47      */
       
    48     public static final String XHTML = "xhtml";
       
    49 
       
    50 
       
    51     /**
       
    52      * The output method for text documents.
       
    53      */
       
    54     public static final String TEXT = "text";
       
    55 
       
    56 
       
    57     /**
       
    58      * The output method for FO documents as PDF.
       
    59      */
       
    60     public static final String FOP = "fop";
       
    61 
       
    62 
       
    63 }