Revision 670 trunk/org.gvsig.app.document.layout2.app/org.gvsig.app.document.layout2.app.mainplugin/src/main/java/org/gvsig/app/project/documents/layout/fframes/gui/dialogs/IFFrameDialog.java

View differences:

IFFrameDialog.java
25 25

  
26 26
import org.gvsig.andami.ui.mdiManager.IWindow;
27 27
import org.gvsig.andami.ui.mdiManager.WindowInfo;
28
import org.gvsig.app.project.documents.layout.LayoutContext;
28 29
import org.gvsig.app.project.documents.layout.fframes.IFFrame;
29 30
import org.gvsig.tools.observer.Observable;
31
import org.gvsig.tools.swing.api.ActionListenerSupport;
30 32

  
31 33
/**
32 34
 * Interface para la creaci?n de los di?logos que a?aden elementos al Layout.
33
 * 
35
 *
34 36
 * @author Vicente Caballero Navarro
35 37
 */
36
public interface IFFrameDialog extends IWindow, Observable {
38
public interface IFFrameDialog extends IWindow, Observable, ActionListenerSupport {
37 39

  
38 40
    /**
39 41
     * Sets the bounding box of the fframe being created, in screen
40 42
     * coordinates (pixels), defining the position and size of the frame
41 43
     * within the Layout control.
42
     * 
44
     *
43 45
     * @param r
44 46
     *            BoundingBox of the fframe.
45 47
     */
......
47 49

  
48 50
    /**
49 51
     * Devuelve la informaci?n de la ventana.
50
     * 
52
     *
51 53
     * @return Informaci?n referente a la ventana.
52 54
     */
53 55
    public WindowInfo getWindowInfo();
54 56

  
55 57
    /**
56 58
     * Devuelve true si ha sido aceptado el di?logo.
57
     * 
59
     *
58 60
     * @return True si se ha aceptado.
59 61
     */
60 62
    public boolean getIsAcepted();
61 63

  
62 64
    public IFFrame getFFrame();
65

  
63 66
}

Also available in: Unified diff