Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21478 rajender 1
package com.saholic.profittill.navigationdrawer;
2
 
3
 
4
public class ExpandableNavigationItem {
5
    String title;
6
 
7
    int icon;
8
 
9
    /**
10
     * @param title
11
     *
12
     */
13
    public ExpandableNavigationItem(String title) {
14
        super();
15
        this.title = title;
16
 
17
    }
18
 
19
    /**
20
     * @return the title
21
     */
22
    public String getTitle() {
23
        return title;
24
    }
25
 
26
    /**
27
     * @param title
28
     *            the title to set
29
     */
30
    public void setTitle(String title) {
31
        this.title = title;
32
    }
33
 
34
    /**
35
     * @return the icon
36
     */
37
    public int getIcon() {
38
        return icon;
39
    }
40
 
41
    /**
42
     * @param icon
43
     *            the icon to set
44
     */
45
    public void setIcon(int icon) {
46
        this.icon = icon;
47
    }
48
 
49
}