Coverage Report - com.lexicalscope.fluentreflection.TypeToken
 
Classes in this File Line Coverage Branch Coverage Complexity
TypeToken
81%
9/11
50%
2/4
3
 
 1  
 package com.lexicalscope.fluentreflection;
 2  
 
 3  
 import static com.google.inject.internal.MoreTypes.canonicalize;
 4  
 
 5  
 import java.lang.reflect.ParameterizedType;
 6  
 import java.lang.reflect.Type;
 7  
 
 8  
 /*
 9  
  * Copyright 2011 Tim Wood
 10  
  *
 11  
  * Licensed under the Apache License, Version 2.0 (the "License");
 12  
  * you may not use this file except in compliance with the License.
 13  
  * You may obtain a copy of the License at
 14  
  *
 15  
  * http://www.apache.org/licenses/LICENSE-2.0
 16  
  *
 17  
  * Unless required by applicable law or agreed to in writing, software
 18  
  * distributed under the License is distributed on an "AS IS" BASIS,
 19  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 20  
  * See the License for the specific language governing permissions and
 21  
  * limitations under the License.
 22  
  */
 23  
 
 24  18
 /**
 25  
  * Used to supply generic type information to the library. You use this class by creating anonymous subclasses of it.
 26  18
  *
 27  18
  * @author tim
 28  0
  *
 29  
  * @param <T> the generic type information.
 30  18
  */
 31  24
 public class TypeToken<T> {
 32  
     Type getSuperclassTypeParameter() {
 33  6
         final Type superclass = this.getClass().getGenericSuperclass();
 34  6
         if (superclass instanceof Class) {
 35  0
             throw new RuntimeException("Missing type parameter.");
 36  
         }
 37  6
         final ParameterizedType parameterized = (ParameterizedType) superclass;
 38  6
         return canonicalize(parameterized.getActualTypeArguments()[0]);
 39  
     }
 40  
 }