Coverage Report - org.trails.finder.BlockFinder
 
Classes in this File Line Coverage Branch Coverage Complexity
BlockFinder
N/A 
N/A 
1
 
 1  
 package org.trails.finder;
 2  
 
 3  
 import org.apache.tapestry.IRequestCycle;
 4  
 import org.apache.tapestry.components.Block;
 5  
 import org.apache.tapestry.util.ComponentAddress;
 6  
 import org.trails.descriptor.IPropertyDescriptor;
 7  
 
 8  
 public interface BlockFinder
 9  
 {
 10  
 
 11  
         /**
 12  
          * @return the component address for a block for the specified property
 13  
          */
 14  
         public abstract ComponentAddress findBlockAddress(IPropertyDescriptor descriptor);
 15  
 
 16  
         /**
 17  
          * Return the block for the specified property
 18  
          *
 19  
          * @param cycle
 20  
          * @param descriptor
 21  
          * @return
 22  
          */
 23  
         public Block findBlock(IRequestCycle cycle, IPropertyDescriptor descriptor);
 24  
 
 25  
         public ComponentAddress getDefaultBlockAddress();
 26  
 }