blob: 9c230d8797f8c21c9041f7bf8081a43de3b6dd4c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Innoopract Informationssysteme GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Innoopract Informationssysteme GmbH - initial API and implementation
******************************************************************************/
package org.eclipse.epp.wizard.model;
import java.util.List;
/**
* @author Jordi Boehme Lopez <jboehme@innoopract.com>
*/
public class Structure {
protected List<Screen> screens;
public Structure( final List<Screen> screens ) {
this.screens = screens;
}
public Screen[] getScreens() {
return screens.toArray( new Screen[ screens.size() ] );
}
}