imported from svn
[metux-java.git] / util / HTMLEntities.java
blob333e3d9c1f3ede2f61db12be263cea711dcd67a7
2 package org.de.metux.util;
4 public class HTMLEntities
6 // FIXME !
7 public static String encode(String str)
9 return
10 StrReplace.replace(" ", " " ,
11 StrReplace.replace("\"", """, str));
14 public static String decode(String str)
16 return
17 StrReplace.replace(" ", " ",
18 StrReplace.replace(""", "\"", str));