KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > transformers > codec > SgmlEntityDecoder


1 /*
2  * $Id: SgmlEntityDecoder.java 3937 2006-11-20 16:04:25Z lajos $
3  * --------------------------------------------------------------------------------------
4  * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
5  *
6  * The software in this package is published under the terms of the MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.transformers.codec;
12
13
14 /**
15  * Decodes a String containing XML entities into its proper XML representation
16  *
17  * @deprecated use {@link XmlEntityDecoder} instead
18  */

19 public class SgmlEntityDecoder extends XmlEntityDecoder
20 {
21     /**
22      * Serial version
23      */

24     private static final long serialVersionUID = 7958646035249197129L;
25
26     public SgmlEntityDecoder()
27     {
28         super();
29         logger.warn(this.getClass().getName() + " is deprecated; please use "
30                     + this.getClass().getSuperclass().getName());
31     }
32
33 }
34
Popular Tags