View Javadoc

1   package net.sourceforge.jparam.parser;
2   
3   import net.sourceforge.jparam.JParamException;
4   import net.sourceforge.jparam.conversion.weights.ScalarConversionWeight;
5   
6   /***
7    * A description of class TreeNode
8    */
9   public interface TreeNode {
10  	public Object getConstructedValue(Class expectedValueType)
11  			throws JParamException;
12  
13  	public ScalarConversionWeight getConversionWeight(Class expectedValueType)
14  			throws JParamException;
15  }