src/share/classes/com/sun/tools/doclets/formats/html/markup/RawHtml.java

Mon, 13 Dec 2010 13:44:47 -0800

author
bpatel
date
Mon, 13 Dec 2010 13:44:47 -0800
changeset 793
ffbf2b2a8611
parent 766
90af8d87741f
child 1359
25e14ad23cef
permissions
-rw-r--r--

7006270: Several javadoc regression tests are failing on windows
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.tools.doclets.formats.html.markup;
    28 import com.sun.tools.doclets.internal.toolkit.Content;
    29 import com.sun.tools.doclets.internal.toolkit.util.*;
    31 /**
    32  * Class for generating raw HTML content to be added to HTML pages of javadoc output.
    33  *
    34  * @author Bhavesh Patel
    35  */
    36 public class RawHtml extends Content{
    38     private String rawHtmlContent;
    40     public static final Content nbsp = new RawHtml(" ");
    42     /**
    43      * Constructor to construct a RawHtml object.
    44      *
    45      * @param rawHtml raw HTML text to be added
    46      */
    47     public RawHtml(String rawHtml) {
    48         rawHtmlContent = nullCheck(rawHtml);
    49     }
    51     /**
    52      * This method is not supported by the class.
    53      *
    54      * @param content content that needs to be added
    55      * @throws DocletAbortException this method will always throw a
    56      *                              DocletAbortException because it
    57      *                              is not supported.
    58      */
    59     public void addContent(Content content) {
    60         throw new DocletAbortException();
    61     }
    63     /**
    64      * This method is not supported by the class.
    65      *
    66      * @param stringContent string content that needs to be added
    67      * @throws DocletAbortException this method will always throw a
    68      *                              DocletAbortException because it
    69      *                              is not supported.
    70      */
    71     public void addContent(String stringContent) {
    72         throw new DocletAbortException();
    73     }
    75     /**
    76      * {@inheritDoc}
    77      */
    78     public boolean isEmpty() {
    79         return rawHtmlContent.isEmpty();
    80     }
    82     /**
    83      * {@inheritDoc}
    84      */
    85     public void write(StringBuilder contentBuilder) {
    86         contentBuilder.append(rawHtmlContent);
    87     }
    88 }

mercurial