Example usage for org.eclipse.jface.wizard WizardPage getName

List of usage examples for org.eclipse.jface.wizard WizardPage getName

Introduction

In this page you can find the example usage for org.eclipse.jface.wizard WizardPage getName.

Prototype

@Override
    public String getName() 

Source Link

Usage

From source file:eu.esdihumboldt.hale.ui.io.internal.WizardPageDecorator.java

License:Open Source License

/**
 * Create a decorator for the given wizard page.
 * //from   ww  w  .ja  v  a2 s  .  co  m
 * @param decoratee the wizard page to decorate
 */
public WizardPageDecorator(WizardPage decoratee) {
    super(decoratee.getName());
    this.decoratee = decoratee;
}