Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 48ac0b22227610433bd8901f0cf4eb4f035360d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.net4j.internal.ui.wizards.steps.sample;

import org.eclipse.net4j.internal.ui.wizards.steps.NewAcceptorStep;
import org.eclipse.net4j.ui.wizards.SequentialStep;

/**
 * @author Eike Stepper
 */
public class CustomerStep extends SequentialStep
{
  public CustomerStep()
  {
    add(new AddressStep());
    add(new NewAcceptorStep());
    add(new AccountStep());
  }
}

Back to the top