View Javadoc

1   /*
2    * Copyright 2007-2013 smartics, Kronseder & Reiner GmbH
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package de.smartics.exceptions.report.renderer.html;
17  
18  import de.smartics.exceptions.report.renderer.LinkPlainTagRenderer;
19  
20  
21  /**
22   * Default implementation that renders the linkplain tags as HTML.
23   */
24  public class HtmlLinkPlainTagRenderer extends AbstractHtmlLinkTagRenderer
25      implements LinkPlainTagRenderer
26  {
27    // ********************************* Fields *********************************
28  
29    // --- constants ------------------------------------------------------------
30  
31    // --- members --------------------------------------------------------------
32  
33    // ****************************** Initializer *******************************
34  
35    // ****************************** Constructors ******************************
36  
37    /**
38     * Default constructor.
39     */
40    public HtmlLinkPlainTagRenderer()
41    {
42      super(true);
43    }
44  
45    // ****************************** Inner Classes *****************************
46  
47    // ********************************* Methods ********************************
48  
49    // --- init -----------------------------------------------------------------
50  
51    // --- get&set --------------------------------------------------------------
52  
53    // --- business -------------------------------------------------------------
54  
55    // --- object basics --------------------------------------------------------
56  
57  }