blob: 32a8cadb0cd5c42bace62900baa6ca939c5b9dfc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.xwt.tests.wizard;
import java.net.URL;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.xwt.XWT;
public class PersonView extends Composite {
public PersonView(Composite parent, int style) {
super(parent, style);
// TODO Auto-generated constructor stub
}
public static void main(String[] args) {
URL url = PersonView.class.getResource("PersonView.xwt");
try {
XWT.open(url);
} catch (Exception e) {
e.printStackTrace();
}
}
}