Statistics
| Revision:

svn-gvsig-desktop / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / gui / toc / ITocItem.java @ 423

History | View | Annotate | Download (707 Bytes)

1
/*
2
 * Created on 03-dic-2004
3
 *
4
 * TODO To change the template for this generated file go to
5
 * Window - Preferences - Java - Code Generation - Code and Comments
6
 */
7
package com.iver.cit.gvsig.gui.toc;
8

    
9
import java.awt.Dimension;
10
import java.awt.datatransfer.Transferable;
11

    
12
import javax.swing.Icon;
13

    
14
/**
15
 * @author FJP
16
 * Siguiendo el Patr?n COMPOSITE: la rama ser? la capa (FLayer) y la
17
 * hoja ser? el s?mbolo (FStyle2D)
18
 *
19
 * TODO To change the template for this generated type comment go to
20
 * Window - Preferences - Java - Code Generation - Code and Comments
21
 */
22
public interface ITocItem extends Transferable {
23
        String getLabel();
24
        Icon getIcon();
25
        Dimension getSize();
26
        void setSize(Dimension sz);
27
}