1 package net.sf.jameleon.plugin.jiffie.util; 2 3 import net.sf.jiffie.IHTMLDocument2; 4 import net.sf.jiffie.IHTMLFormElement; 5 6 /*** 7 * A simple interface to interact with the object that contains the reference to IHTMLFormElement and IHTMLDocument2. 8 */ 9 public interface DocumentDelegate{ 10 11 public IHTMLDocument2 getDocument(); 12 13 public IHTMLFormElement getWorkingForm(); 14 15 public boolean highlightActiveElement(); 16 }