Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / applications / appgvSIG / src / org / gvsig / app / project / documents / view / legend / gui / MultipleAttributes.java @ 34114

History | View | Annotate | Download (504 Bytes)

1 29598 jpiera
package org.gvsig.app.project.documents.view.legend.gui;
2 10737 jaume
3 29598 jpiera
import org.gvsig.andami.PluginServices;
4 20994 jmvivo
import org.gvsig.fmap.mapcontext.layers.FLayer;
5
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
6
7 10737 jaume
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 11704 jaume
        public boolean isSuitableFor(FLayer layer) {
19
                return layer instanceof FLyrVect;
20
        }
21 10737 jaume
}