Project

General

Profile

« Previous | Next » 

Revision 41625

Changed all the major widgets to load appropriate help (if needed) from the database on the fly

View differences:

WizardStepWidget.java
8 8
 */
9 9
public abstract class WizardStepWidget implements IsWidget {
10 10

  
11
    private String id;
11 12
    private String title;
12 13
    private String mode;
13 14

  
14 15
    private WizardStepCompletedListener wizardStepCompletedListener;
15 16

  
16
    public WizardStepWidget(String title, String mode) {
17
    public WizardStepWidget(String id, String title, String mode) {
18
        this.id = id;
17 19
        this.title = title;
18 20
        this.mode = mode;
19 21
    }
20 22

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

  
21 27
    public String getTitle() {
22 28
        return title;
23 29
    }

Also available in: Unified diff