1 /*
2 * $Id: IDescriptor.java,v 1.18 2011/06/16 09:29:41 jbmeslin Exp $
3 *
4 */
5 package org.rcfaces.core.internal.validator;
6
7 import org.rcfaces.core.validator.IParameter;
8
9 /**
10 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
11 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:41 $
12 */
13 public interface IDescriptor {
14 String[] listRequiredClasses();
15
16 IParameter[] listParameters();
17 }