1 package net.sourceforge.jparam.parser; 2 3 import net.sourceforge.jparam.JParamException; 4 5 public interface AssignmentListener { 6 public void notifyAssignment(String name, TreeNode value) 7 throws JParamException; 8 }