Project

General

Profile

« Previous | Next » 

Revision 3250b022

Added by Patrick Plitzner over 4 years ago

extract string constant

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/feature/FeatureStateWizard.java
22 22
 */
23 23
public class FeatureStateWizard extends Wizard {
24 24

  
25
    private static final String CREATE_FEATURE_STATE = "Create Feature State";
25 26
    private FeatureStateWizardPage page;
26 27
    private CdmFormFactory formFactory;
27 28
    private String comboLabel;
......
32 33
        this.formFactory = formFactory;
33 34
        this.termNode = termNode;
34 35
        this.comboLabel = comboLabel;
35
        setWindowTitle("Create Feature State");
36
        setWindowTitle(CREATE_FEATURE_STATE);
36 37
    }
37 38

  
38 39
    @Override
39 40
    public void addPages() {
40
        page = new FeatureStateWizardPage("Create Feature State", comboLabel, termNode, formFactory);
41
        page = new FeatureStateWizardPage(CREATE_FEATURE_STATE, comboLabel, termNode, formFactory);
41 42
        addPage(page);
42 43
    }
43 44

  

Also available in: Unified diff