001 package org.tynamo.descriptor;
002
003 /**
004 * Extensible...
005 * Used to support OGNL Expression manipulation in between handlings of models
006 *
007 * @author kenneth.colassi nhhockeyplayer@hotmail.com
008 *
009 * @see CollectionDescriptor
010 */
011 public interface ExpressionSupport {
012
013 public String findAddExpression();
014
015 public String findRemoveExpression();
016
017 public String getExpression(String method);
018 }