blob: 0abb1460a7dd5772b6a3ca527163e91a34cf6d88 [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.status;
import java.net.URL;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.xwt.IConstants;
import org.eclipse.xwt.XWT;
public class ValidationStatusToolTip extends Composite {
public static void main(String[] args) {
URL url = ValidationStatusToolTip.class.getResource(ValidationStatusToolTip.class
.getSimpleName()
+ IConstants.XWT_EXTENSION_SUFFIX);
try {
XWT.open(url);
} catch (Exception e) {
e.printStackTrace();
}
}
public ValidationStatusToolTip(Composite parent, int style) {
super(parent, style);
}
}