Coverage Report - org.mule.config.spring.parsers.specific.IgnoreObjectMethodsDefinitionParser
 
Classes in this File Line Coverage Branch Coverage Complexity
IgnoreObjectMethodsDefinitionParser
0%
0/8
N/A
1
 
 1  
 /*
 2  
  * $Id: IgnoreObjectMethodsDefinitionParser.java 10386 2008-01-18 13:00:32Z acooke $
 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 CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.config.spring.parsers.specific;
 12  
 
 13  
 import org.mule.config.spring.parsers.generic.ParentDefinitionParser;
 14  
 import org.mule.config.spring.parsers.processors.ExtendTarget;
 15  
 
 16  
 public class IgnoreObjectMethodsDefinitionParser extends ParentDefinitionParser
 17  
 {
 18  
 
 19  
     public static final String IGNORED_METHOD = "ignoredMethod";
 20  
 
 21  
     public IgnoreObjectMethodsDefinitionParser()
 22  0
     {
 23  0
         registerPostProcessor(new ExtendTarget(IGNORED_METHOD, "toString"));
 24  0
         registerPostProcessor(new ExtendTarget(IGNORED_METHOD, "hashCode"));
 25  0
         registerPostProcessor(new ExtendTarget(IGNORED_METHOD, "wait"));
 26  0
         registerPostProcessor(new ExtendTarget(IGNORED_METHOD, "notify"));
 27  0
         registerPostProcessor(new ExtendTarget(IGNORED_METHOD, "notifyAll"));
 28  0
         registerPostProcessor(new ExtendTarget(IGNORED_METHOD, "getClass"));
 29  0
     }
 30  
 
 31  
 }