/**
* Build up the wizard's path.
* @return the wizard's path
*/
private Path buildPath() {
SimplePath path = new SimplePath();
// Selection of data set, table name, etc.
path.addStep(new DbDataStep());
// database connection settings
path.addStep(new DbPropertiesStep());
return path;
}