01: /*
02: * FieldsProviderEditor.java
03: *
04: * Created on December 7, 2006, 8:59 AM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
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: }
|