Created
February 11, 2010 14:51
-
-
Save brindy/301575 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package helloworld; | |
import com.vaadin.Application; | |
import com.vaadin.ui.Label; | |
import com.vaadin.ui.Window; | |
public class HelloWorldApplication extends Application { | |
@Override | |
public void init() { | |
Window main = new Window("Hello World Application"); | |
main.addComponent(new Label("Hello World")); | |
setMainWindow(main); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment