View Javadoc

1   /*
2    * $Id: ITaskDescriptor.java,v 1.1 2007/11/29 12:58:13 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal.validator;
5   
6   import org.rcfaces.core.validator.IClientValidatorTask;
7   
8   /**
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.1 $ $Date: 2007/11/29 12:58:13 $
12   */
13  public interface ITaskDescriptor {
14      String getClientTaskExpression();
15  
16      String getClientTaskExpressionType();
17  
18      IClientValidatorTask getServerTask();
19  }