Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.compat.cdc / org.gvsig.basicformats / src / main / java / org / gvsig / basicformats / CLRFile.java @ 43876

History | View | Annotate | Download (463 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.basicformats;
7

    
8
import org.gvsig.raster.lib.legend.api.colortable.ColorTable;
9

    
10

    
11
public interface CLRFile extends FormatFile {
12

    
13
    public String FILE_EXTENSION = "clr";
14
    
15
    ColorTable getColorTable();
16

    
17
    void setColorTable(ColorTable colorTable);
18
    
19
}