Coverage Report - org.apache.myfaces.config.impl.digester.elements.FaceletsProcessingImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
FaceletsProcessingImpl
0%
0/10
N/A
1
 
 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.config.impl.digester.elements;
 20  
 
 21  
 /**
 22  
  * 
 23  
  * @author Leonardo Uribe
 24  
  * @since 2.1.0
 25  
  */
 26  0
 public class FaceletsProcessingImpl extends org.apache.myfaces.config.element.FaceletsProcessing 
 27  
 {
 28  
     /**
 29  
      * 
 30  
      */
 31  
     private static final long serialVersionUID = 7692451499973040255L;
 32  
 
 33  
     private String fileExtension;
 34  
     
 35  
     private String processAs;
 36  
     
 37  
     private String oamCompressSpaces;
 38  
 
 39  
     public String getFileExtension()
 40  
     {
 41  0
         return fileExtension;
 42  
     }
 43  
 
 44  
     public String getProcessAs()
 45  
     {
 46  0
         return processAs;
 47  
     }
 48  
 
 49  
     public void setFileExtension(String fileExtension)
 50  
     {
 51  0
         this.fileExtension = fileExtension;
 52  0
     }
 53  
 
 54  
     public void setProcessAs(String processAs)
 55  
     {
 56  0
         this.processAs = processAs;
 57  0
     }
 58  
 
 59  
     /**
 60  
      * @return the oamCompressSpaces
 61  
      */
 62  
     @Override
 63  
     public String getOamCompressSpaces()
 64  
     {
 65  0
         return oamCompressSpaces;
 66  
     }
 67  
 
 68  
     /**
 69  
      * @param oamCompressSpaces the oamCompressSpaces to set
 70  
      */
 71  
     public void setOamCompressSpaces(String oamCompressSpaces)
 72  
     {
 73  0
         this.oamCompressSpaces = oamCompressSpaces;
 74  0
     }
 75  
 }