1 /* 2 * FieldsProviderEditor.java 3 * 4 * Created on December 7, 2006, 8:59 AM 5 * 6 * To change this template, choose Tools | Template Manager 7 * and open the template in the editor. 8 */ 9 10 package it.businesslogic.ireport; 11 12 import it.businesslogic.ireport.gui.ReportQueryDialog; 13 14 /** 15 * 16 * @author gtoffoli 17 */ 18 public interface FieldsProviderEditor { 19 20 /** 21 * the method can be not executed in the AWT Event Dispatcher Thread. 22 * Subsequent calls of this method can be placed. I suggest to catch a Throwable to 23 * clean up if the thread is interrupted. 24 */ 25 public void queryChanged(String newQuery); 26 } 27