~~Title: Using the Correct Launcher~~ A JVx application is always developed technology-independent. This makes it possible to provide the application on various different platforms. The framework currently supports the following UI technologies: * Swing * Vaadin * Headless To launch an application using a certain platform, all we have to do is use the appropriate launcher. The launcher definition depends on the used technology. If you use Swing, all you have to do is to set a command-line argument. For Vaadin and Headless, you have to use the deployment descriptor (web.xml). The class com.sibvisions.rad.ui.swing.impl.SwingApplication is used as main class for Swing. == Example Using an Eclipse Runtime Configuration == The configuration dialog: {{:jvx:client:gui:swing.png?nolink|}} == Example Using Vaadin == The deployment descriptor (web.xml): VaadinServlet com.sibvisions.rad.ui.vaadin.server.VaadinServlet UI com.sibvisions.rad.ui.vaadin.impl.VaadinUI widgetset com.sibvisions.rad.ui.vaadin.ext.ui.Widgetset main com.sibvisions.apps.simpleapp.SimpleApplication VaadinServlet /*