Statistics
| Revision:

root / branches / v2_0_0_prep / applications / appgvSIG / src / org / gvsig / app / project / documents / DefaultDocumentActionGroup.java @ 31496

History | View | Annotate | Download (618 Bytes)

1
package org.gvsig.app.project.documents;
2

    
3
public class DefaultDocumentActionGroup implements DocumentActionGroup  {
4

    
5
        private String title;
6
        private String description;
7
        private int order;
8
        private String id;
9

    
10
        public DefaultDocumentActionGroup(String id, String title, String description, int order) {
11
                this.id = id;
12
                this.title = title;
13
                this.description = description;
14
                this.order= order;
15
        }
16
        
17
        public String getDescription() {
18
                return this.description;
19
        }
20

    
21
        public int getOrder() {
22
                return this.order;
23
        }
24

    
25
        public String getTitle() {
26
                return this.title;
27
        }
28

    
29
        public String getId() {
30
                return this.id;
31
        }
32

    
33
}