Package com.fasterxml.aalto.util

Examples of com.fasterxml.aalto.util.IllegalCharHandler


    protected char handleInvalidXmlChar(int i)
        throws XMLStreamException
    {
     
      final IllegalCharHandler iHandler = _config.getIllegalCharHandler();
     
      if (iHandler != null) {
        return iHandler.convertIllegalChar(i);
      }
     
        char c = (char) i;
        if (c == CHAR_NULL) {
            throwNullChar();
View Full Code Here

TOP

Related Classes of com.fasterxml.aalto.util.IllegalCharHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.