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

Classes in this File Line Coverage Branch Coverage Complexity
ClassNameSchemaNamingStrategy
0% 
0% 
1.5

 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  
  * Names schema types from the property type of the descriptor
 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 ClassNameSchemaNamingStrategy  extends SchemaTypeNamingStrategy {
 26  
     
 27  
     /**
 28  
      * Names the schema type from the type of the property.
 29  
      * @see SchemaTypeNamingStrategy#nameSchemaType(ElementDescriptor)
 30  
      */
 31  
     public String nameSchemaType(ElementDescriptor elementDescriptor) {
 32  
         // TODO: this is probably wrong. needs more thought but this stuff is still experiemental
 33  0
         String result="xsd:anyType";
 34  0
         Class type = elementDescriptor.getPropertyType();
 35  0
         if (type != null)
 36  
         {
 37  0
             String fullName = elementDescriptor.getPropertyType().getName();
 38  0
             int lastIndexOf = fullName.lastIndexOf('.');
 39  0
             result = fullName.substring(++lastIndexOf);
 40  
         }
 41  0
         return result;
 42  
     }
 43  
     
 44  
     /**
 45  
      * Outputs brief description.
 46  
      */
 47  
     public String toString() {
 48  0
         return "Simple Class Name";
 49  
     }
 50  
 }