/* * Created on 23 nov. 04 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package fr.lifl.stc.stan.annotation; import org.apache.bcel.generic.InstructionHandle; import fr.lifl.stc.stan.execution.Frame; import fr.lifl.stc.stan.signature.PartialSignature; /** * @author ryl * */ public interface Annotation { public boolean update (Frame a,InstructionHandle ih); public PartialSignature getPartialSignature(); public String toHTML (); public void addResults(); }