Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2057 / libraries / libUIComponent / src / org / gvsig / gui / DefaultColorTablesFactory.java @ 39177

History | View | Annotate | Download (437 Bytes)

1
package org.gvsig.gui;
2

    
3
import java.util.ArrayList;
4
import java.util.List;
5

    
6
public class DefaultColorTablesFactory implements ColorTablesFactory {
7
        private List<ColorTablePainter> colorTables;
8

    
9
        public DefaultColorTablesFactory() {
10
                this.colorTables = new ArrayList<ColorTablePainter>();
11
                this.colorTables.add(new DefaultColorTablePainter());
12
        }
13
        
14
        public List<ColorTablePainter> createColorTables() {
15
                return this.colorTables;
16
        }
17

    
18
}