Coverage Report - org.seasar.teeda.core.mock.NullWebappConfig
 
Classes in this File Line Coverage Branch Coverage Complexity
NullWebappConfig
0%
0/17
N/A
1
 
 1  
 /*
 2  
  * Copyright 2004-2011 the Seasar Foundation and the Others.
 3  
  *
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  *     http://www.apache.org/licenses/LICENSE-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 13  
  * either express or implied. See the License for the specific language
 14  
  * governing permissions and limitations under the License.
 15  
  */
 16  
 package org.seasar.teeda.core.mock;
 17  
 
 18  
 import java.util.List;
 19  
 
 20  
 import org.seasar.teeda.core.config.webapp.element.ContextParamElement;
 21  
 import org.seasar.teeda.core.config.webapp.element.FilterElement;
 22  
 import org.seasar.teeda.core.config.webapp.element.ServletElement;
 23  
 import org.seasar.teeda.core.config.webapp.element.ServletMappingElement;
 24  
 import org.seasar.teeda.core.config.webapp.element.TaglibElement;
 25  
 import org.seasar.teeda.core.config.webapp.element.WebappConfig;
 26  
 
 27  
 /**
 28  
  * @author manhole
 29  
  */
 30  0
 public class NullWebappConfig implements WebappConfig {
 31  
 
 32  
     public void addContextParamElement(
 33  
             final ContextParamElement contextParamElement) {
 34  0
     }
 35  
 
 36  
     public void addFilterElement(final FilterElement filterElement) {
 37  0
     }
 38  
 
 39  
     public void addServletElement(final ServletElement servletElement) {
 40  0
     }
 41  
 
 42  
     public void addServletMappingElement(
 43  
             final ServletMappingElement servletMappingElement) {
 44  0
     }
 45  
 
 46  
     public void addTaglibElement(final TaglibElement taglibElement) {
 47  0
     }
 48  
 
 49  
     public ContextParamElement getContextParamElementByParamName(
 50  
             final String paramName) {
 51  0
         return null;
 52  
     }
 53  
 
 54  
     public List getContextParamElements() {
 55  0
         return null;
 56  
     }
 57  
 
 58  
     public FilterElement getFilterElementByFilterName(final String filterName) {
 59  0
         return null;
 60  
     }
 61  
 
 62  
     public List getFilterElements() {
 63  0
         return null;
 64  
     }
 65  
 
 66  
     public ServletMappingElement getServletMappingElementByServletName(
 67  
             final String servletName) {
 68  0
         return null;
 69  
     }
 70  
 
 71  
     public ServletElement getServletElementByServletClass(
 72  
             final String servletClass) {
 73  0
         return null;
 74  
     }
 75  
 
 76  
     public ServletElement getServletElementByServletName(
 77  
             final String servletName) {
 78  0
         return null;
 79  
     }
 80  
 
 81  
     public List getServletElements() {
 82  0
         return null;
 83  
     }
 84  
 
 85  
     public List getServletMappingElements() {
 86  0
         return null;
 87  
     }
 88  
 
 89  
     public List getTaglibElements() {
 90  0
         return null;
 91  
     }
 92  
 
 93  
     public ServletMappingElement getServletMappingElementByServletClass(
 94  
             final String servletClass) {
 95  0
         return null;
 96  
     }
 97  
 
 98  
 }