blob: 2963c9870ebb4a842c120c5b299b521f9e712750 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 Soyatec (http://www.soyatec.com) 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:
* Soyatec - initial API and implementation
*******************************************************************************/
package org.eclipse.xwt.emf.test;
import java.net.URL;
import org.eclipse.xwt.IConstants;
import org.eclipse.xwt.XWT;
import org.eclipse.xwt.emf.EMFDataProvider;
/**
* @author jliu jin.liu@soyatec.com
*/
public class EMFDataProvider_FeatureName {
public static void main(String[] args) {
XWT.registerMetaclass(EMFDataProvider.class);
URL url = EMFDataProvider_FeatureName.class
.getResource(EMFDataProvider_FeatureName.class.getSimpleName()
+ IConstants.XWT_EXTENSION_SUFFIX);
try {
XWT.open(url);
} catch (Exception e) {
e.printStackTrace();
}
}
}