Statistics
| Revision:

gvsig-3d / org.gvsig.animation3d / trunk / org.gvsig.animation3d / org.gvsig.animation3d.swing / org.gvsig.animation3d.swing.api / src / main / java / org / gvsig / animation3d / swing / api / Animation3DPanel.java @ 672

History | View | Annotate | Download (798 Bytes)

1
package org.gvsig.animation3d.swing.api;
2

    
3
import org.gvsig.fmap.mapcontext.layers.ExtendedPropertiesSupport;
4
import org.gvsig.tools.dispose.Disposable;
5
import org.gvsig.tools.observer.Observer;
6
import org.gvsig.tools.swing.api.Component;
7

    
8

    
9
/**
10
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
11
 *
12
 */
13
public interface Animation3DPanel extends Component, Observer, Disposable {
14
    
15
    /**
16
     * 
17
     * @param name
18
     * @param viewDocument
19
     */
20
    public void addViewDocument(String name, ExtendedPropertiesSupport viewDocument);
21
    
22
    /**
23
     * 
24
     * @param name
25
     */
26
    public void removeViewDocument(String name);
27

    
28
    /**
29
     * 
30
     * @param oldValue
31
     * @param newValue
32
     */
33
    public void changeViewDocumentName(String oldValue, String newValue);
34

    
35
}