Coverage Report - org.apache.myfaces.shared.util.xml.MyFacesErrorHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
MyFacesErrorHandler
0%
0/19
0%
0/2
1.2
 
 1  
 /*
 2  
  * Licensed to the Apache Software Foundation (ASF) under one
 3  
  * or more contributor license agreements.  See the NOTICE file
 4  
  * distributed with this work for additional information
 5  
  * regarding copyright ownership.  The ASF licenses this file
 6  
  * to you under the Apache License, Version 2.0 (the
 7  
  * "License"); you may not use this file except in compliance
 8  
  * with the License.  You may obtain a copy of the License at
 9  
  *
 10  
  *   http://www.apache.org/licenses/LICENSE-2.0
 11  
  *
 12  
  * Unless required by applicable law or agreed to in writing,
 13  
  * software distributed under the License is distributed on an
 14  
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 15  
  * KIND, either express or implied.  See the License for the
 16  
  * specific language governing permissions and limitations
 17  
  * under the License.
 18  
  */
 19  
 package org.apache.myfaces.shared.util.xml;
 20  
 
 21  
 import java.util.logging.Level;
 22  
 import java.util.logging.Logger;
 23  
 
 24  
 import org.xml.sax.ErrorHandler;
 25  
 import org.xml.sax.SAXParseException;
 26  
 
 27  
 /**
 28  
  * Convenient error handler for xml sax parsing.
 29  
  */
 30  
 public class MyFacesErrorHandler
 31  
         implements ErrorHandler
 32  
 {
 33  
     private Logger _log;
 34  
 
 35  
     public MyFacesErrorHandler(Logger log)
 36  0
     {
 37  0
         _log = log;
 38  0
     }
 39  
 
 40  
     public void warning(SAXParseException exception)
 41  
     {
 42  0
         if (_log.isLoggable(Level.WARNING))
 43  
         {
 44  0
             _log.log(Level.WARNING, getMessage(exception), exception);
 45  
         }
 46  0
     }
 47  
 
 48  
     public void error(SAXParseException exception)
 49  
     {
 50  0
         _log.log(Level.SEVERE, getMessage(exception), exception);
 51  0
     }
 52  
 
 53  
     public void fatalError(SAXParseException exception)
 54  
     {
 55  0
         _log.log(Level.SEVERE, getMessage(exception), exception);
 56  0
     }
 57  
 
 58  
     private String getMessage(SAXParseException exception)
 59  
     {
 60  0
         StringBuilder buf = new StringBuilder();
 61  0
         buf.append("SAXParseException at");
 62  0
         buf.append(" URI=");
 63  0
         buf.append(exception.getSystemId());
 64  0
         buf.append(" Line=");
 65  0
         buf.append(exception.getLineNumber());
 66  0
         buf.append(" Column=");
 67  0
         buf.append(exception.getColumnNumber());
 68  0
         return buf.toString();
 69  
     }
 70  
 
 71  
 }