Coverage Report - org.trails.descriptor.IExpressionSupport
 
Classes in this File Line Coverage Branch Coverage Complexity
IExpressionSupport
N/A 
N/A 
1
 
 1  
 package org.trails.descriptor;
 2  
 
 3  
 /**
 4  
  * Extensible...
 5  
  * Used to support OGNL Expression manipulation in between handlings of models
 6  
  * 
 7  
  * @author kenneth.colassi                                                nhhockeyplayer@hotmail.com
 8  
  * 
 9  
  * @see CollectionDescriptor
 10  
  */
 11  
 public interface IExpressionSupport {
 12  
 
 13  
         public String findAddExpression();
 14  
 
 15  
         public String findRemoveExpression();
 16  
 
 17  
         public String getExpression(String method);
 18  
 }