blob: c7fe75330e190ede6e38c83a282dd09d84482910 [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.databinding.bindcontrol;
import java.net.URL;
import org.eclipse.xwt.IConstants;
import org.eclipse.xwt.XWT;
public class ControlBinding {
public static void main(String[] args) {
URL url = ControlBinding.class.getResource(ControlBinding.class
.getSimpleName()
+ IConstants.XWT_EXTENSION_SUFFIX);
try {
XWT.open(url);
} catch (Exception e) {
e.printStackTrace();
}
}
}