Revision 11980

View differences:

branches/v10/frameworks/_fwAndami/src/com/iver/andami/ui/mdiManager/IWindow.java
41 41
package com.iver.andami.ui.mdiManager;
42 42

  
43 43
/**
44
 * Interfaz a implementar por todos los JPanel (o derivados de JPanel) que
45
 * quieran
44
 * The IWindow interface should be implemented by any panel which is
45
 * intended to be an Andami window. The JPanel implementing IWindow
46
 * will be the contents of the window, and the frame containing it
47
 * will be created by Andami.
46 48
 *
49
 * @see MDIManager
50
 * @see WindowInfo
51
 * @see SingletonWindow
52
 * @see IWindowListener
53
 * 
47 54
 * @author Fernando Gonz?lez Cort?s
48 55
 */
49 56
public interface IWindow {
50 57
    /**
51
     * M?todo invocado por el framework una sola vez.
58
     * <p>Gets the initial window properties. It must be called just once
59
     * from the framework. To get the current WindowInfo from this
60
     * window, use
61
     * <code>PluginServices.getMDIManager.getWindowInfo(window);</code></p>
52 62
     *
53
     * @return Un objeto ViewInfo.
63
     * @return A WindowInfo object, containing the properties that
64
     * this window should have when created
54 65
     */
55 66
    public WindowInfo getWindowInfo();
56 67
}
trunk/frameworks/_fwAndami/src/com/iver/andami/ui/mdiManager/IWindow.java
1 1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2 2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
3
 * Copyright (C) 2004-2007 IVER T.I. and Generalitat Valenciana.
4 4
 *
5 5
 * This program is free software; you can redistribute it and/or
6 6
 * modify it under the terms of the GNU General Public License
......
41 41
package com.iver.andami.ui.mdiManager;
42 42

  
43 43
/**
44
 * Interfaz a implementar por todos los JPanel (o derivados de JPanel) que
45
 * quieran
44
 * The IWindow interface should be implemented by any panel which is
45
 * intended to be an Andami window. The JPanel implementing IWindow
46
 * will be the contents of the window, and the frame containing it
47
 * will be created by Andami.
46 48
 *
49
 * @see MDIManager
50
 * @see WindowInfo
51
 * @see SingletonWindow
52
 * @see IWindowListener
53
 * 
47 54
 * @author Fernando Gonz?lez Cort?s
48 55
 */
49 56
public interface IWindow {
......
52 59
     * from the framework. To get the current WindowInfo from this
53 60
     * window, use
54 61
     * <code>PluginServices.getMDIManager.getWindowInfo(window);</code></p>
55
     * 
56
     * <p>M?todo invocado por el framework una sola vez.</p>
57
     * 
58 62
     *
59
     * @return Un objeto ViewInfo.
63
     * @return A WindowInfo object, containing the properties that
64
     * this window should have when created
60 65
     */
61 66
    public WindowInfo getWindowInfo();
62
    
63
    
64 67
}

Also available in: Unified diff