Coverage Report - org.apache.commons.betwixt.schema.strategy.impl.ElementSchemaNamingStrategy

Classes in this File Line Coverage Branch Coverage Complexity
ElementSchemaNamingStrategy
0% 
N/A 
1

 1  
 /*
 2  
  * Copyright 2005 The Apache Software Foundation.
 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, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */ 
 16  
 package org.apache.commons.betwixt.schema.strategy.impl;
 17  
 
 18  
 import org.apache.commons.betwixt.ElementDescriptor;
 19  
 import org.apache.commons.betwixt.schema.strategy.SchemaTypeNamingStrategy;
 20  
 
 21  
 /**
 22  
  * Strategy uses the name of the element for the complex type
 23  
  * @author <a href='http://commons.apache.org'>Apache Commons Team</a> of the <a href='http://www.apache.org'>Apache Software Foundation</a>
 24  
  */
 25  0
 public class ElementSchemaNamingStrategy extends SchemaTypeNamingStrategy{
 26  
 
 27  
     /**
 28  
      * Names the schema from the element
 29  
      * @see SchemaTypeNamingStrategy#nameSchemaType(ElementDescriptor)
 30  
      * 
 31  
      */
 32  
     public String nameSchemaType(ElementDescriptor descriptor) {
 33  0
         return descriptor.getLocalName();
 34  
     }
 35  
 
 36  
     public String toString() {
 37  0
         return "Element Schema Type Naming Strategy";
 38  
     }
 39  
 }