Statistics
| Revision:

root / branches / v2_0_0_prep / applications / appgvSIG / src / org / gvsig / app / project / documents / view / legend / gui / MultipleAttributes.java @ 29598

History | View | Annotate | Download (504 Bytes)

1
package org.gvsig.app.project.documents.view.legend.gui;
2

    
3
import org.gvsig.andami.PluginServices;
4
import org.gvsig.fmap.mapcontext.layers.FLayer;
5
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
6

    
7

    
8
public class MultipleAttributes extends AbstractParentPanel {
9

    
10
        public String getDescription() {
11
                return null;
12
        }
13

    
14
        public String getTitle() {
15
                return PluginServices.getText(this, "multiple_atributes");
16
        }
17

    
18
        public boolean isSuitableFor(FLayer layer) {
19
                return layer instanceof FLyrVect;
20
        }
21
}