Coverage Report - org.openpermis.editor.policy.adapter.Adaptee
 
Classes in this File Line Coverage Branch Coverage Complexity
Adaptee
N/A
N/A
1
 
 1  
 /*
 2  
  * Copyright (c) 2009, Ergon Informatik AG (http://www.ergon.ch)
 3  
  * All rights reserved.
 4  
  * 
 5  
  * Licensed under the Open Permis License which accompanies this distribution, 
 6  
  * and is available at http://www.openpermis.org/BSDlicenceKent.txt
 7  
  */
 8  
 package org.openpermis.editor.policy.adapter;
 9  
 
 10  
 
 11  
 /**
 12  
  * Describes a part bean that has been adapted to a generic type. 
 13  
  * @param <T> generic type.
 14  
  * @since 0.3.0
 15  
  */
 16  
 public interface Adaptee<T> {
 17  
 
 18  
         //---- Methods
 19  
         
 20  
         /**
 21  
          * Returns the generic adapted.
 22  
          * @return the generic adapted.
 23  
          * @since 0.3.0
 24  
          */
 25  
         T get ();
 26  
 
 27  
 }