Revision 15637 trunk/extensions/extCAD/src/com/iver/cit/gvsig/project/documents/view/legend/gui/tablelayers/TableLayers.java

View differences:

TableLayers.java
17 17
import javax.swing.table.TableColumn;
18 18

  
19 19
import com.iver.andami.PluginServices;
20
import com.iver.andami.config.generate.Plugin;
20 21
import com.iver.cit.gvsig.fmap.core.FShape;
21 22
import com.iver.cit.gvsig.fmap.core.SymbologyFactory;
22 23
import com.iver.cit.gvsig.fmap.layers.ReadableVectorial;
......
38 39
 * @author Vicente Caballero Navarro
39 40
 */
40 41
public class TableLayers extends JPanel {
41
    private ImageIcon selected = new ImageIcon(this.getClass().getClassLoader()
42
                                                   .getResource("images/selected.png"));
43
    private ImageIcon notselected = new ImageIcon(this.getClass()
44
                                                      .getClassLoader()
45
                                                      .getResource("images/notSelected.png"));
46
    private ImageIcon blocked = new ImageIcon(this.getClass().getClassLoader()
47
                                                  .getResource("images/blocked.png"));
48
    private ImageIcon unblocked = new ImageIcon(this.getClass().getClassLoader()
49
                                                    .getResource("images/unblocked.png"));
50
    private ImageIcon active = new ImageIcon(this.getClass().getClassLoader()
51
                                                 .getResource("images/active.png"));
52
    private ImageIcon defuse = new ImageIcon(this.getClass().getClassLoader()
53
                                                 .getResource("images/defuse.png"));
54
    private ImageIcon disable = new ImageIcon(this.getClass().getClassLoader()
55
                                                  .getResource("images/disabled.png"));
56
    private ImageIcon notdisable = new ImageIcon(this.getClass().getClassLoader()
57
                                                     .getResource("images/notdisabled.png"));
58
    private ImageIcon fill = new ImageIcon(this.getClass().getClassLoader()
59
                                               .getResource("images/fill.png"));
60
    private ImageIcon notfill = new ImageIcon(this.getClass().getClassLoader()
61
                                                  .getResource("images/notfill.png"));
42
    private ImageIcon selected = PluginServices.getIconTheme().get("images-selected-icon");
43
    private ImageIcon notselected = PluginServices.getIconTheme().get("images-notselected-icon");
44
    private ImageIcon blocked = PluginServices.getIconTheme().get("images-blocked-icon");
45
    private ImageIcon unblocked = PluginServices.getIconTheme().get("images-unblocked-icon");
46
    private ImageIcon active = PluginServices.getIconTheme().get("images-active-icon");
47
    private ImageIcon defuse = PluginServices.getIconTheme().get("images-defuse-icon");
48
    private ImageIcon disable = PluginServices.getIconTheme().get("images-disabled-icon");
49
    private ImageIcon notdisable =PluginServices.getIconTheme().get("images-notdisabled-icon");
50
    private ImageIcon fill = PluginServices.getIconTheme().get("images-fill-icon");
51
    private ImageIcon notfill = PluginServices.getIconTheme().get("images-notfill-icon");
62 52
    private boolean DEBUG = false;
63 53
    private ReadableVectorial source;
64 54
    private EditionManagerLegend eml;

Also available in: Unified diff