01: /*
02: * FieldsContainer.java
03: *
04: * Created on May 15, 2007, 4:41:46 PM
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.gui.dnd;
11:
12: import it.businesslogic.ireport.JRField;
13:
14: /**
15: *
16: * @author gtoffoli
17: */
18: public interface FieldsContainer {
19:
20: public void addField(JRField f);
21:
22: }
|