Project

General

Profile

« Previous | Next » 

Revision 39068

first step

View differences:

Help.java
5 5
/**
6 6
 * Created by antleb on 4/17/15.
7 7
 */
8
public class Help implements IsSerializable {
8
public class Help extends GoldBean implements IsSerializable {
9 9

  
10
    private String id;
11 10
    private String name;
12 11
    private String text;
13 12

  
14 13
    public Help() {
14
        super();
15 15
    }
16 16

  
17 17
    public Help(String id, String name, String text) {
18
        this.id = id;
18
        super(id);
19 19
        this.name = name;
20 20
        this.text = text;
21 21
    }
22 22

  
23
    public String getId() {
24
        return id;
25
    }
26

  
27
    public void setId(String id) {
28
        this.id = id;
29
    }
30

  
31 23
    public String getName() {
32 24
        return name;
33 25
    }

Also available in: Unified diff