Coverage Report - org.trails.descriptor.DescriptorDecorator
 
Classes in this File Line Coverage Branch Coverage Complexity
DescriptorDecorator
N/A 
N/A 
1
 
 1  
 package org.trails.descriptor;
 2  
 
 3  
 /**
 4  
  * @author Chris Nelson
 5  
  *         <p/>
 6  
  *         A descriptor decorator may modify or replace an IClassDescriptor.  A
 7  
  *         "pipeline" of these is reponsible for ultimately building the final descriptors.
 8  
  */
 9  
 public interface DescriptorDecorator
 10  
 {
 11  
         public IClassDescriptor decorate(IClassDescriptor descriptor);
 12  
 }