- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {}
public static String decodeSpecialSymbols(String text){ try { String s=text; s=ingenias.generator.util.Conversor.restoreInvalidChar(text); return s; } catch (Exception uee){ uee.printStackTrace(); } return ""; }
public static String decodeSpecialSymbols(String text){ try { String s=text; s=ingenias.generator.util.Conversor.restoreInvalidChar(text); return s; } catch (Exception uee){ uee.printStackTrace(); } return ""; }
public static String convertTagToArroba(String containment){ String nstring=replace(containment,"<",SUBTAGCHAR); nstring=replace(nstring,">",SUBTAGCHAR); return restoreInvalidChar(nstring); }
result.append("<"+restoreInvalidChar(containment.substring(pos+1, endTag).trim()) + ">"); lastPos = endTag + SUBTAGCHAR.length(); pos=lastPos;