Skip to content

willix71/SimpleVaadin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SimpleVaadin project

the simplest of vaadin projects

Add the vaadin.jar to the WEB-INF/lib then

public class SimplevaadinApplication extends Application {

private static final long serialVersionUID = 1L;

@Override
public void init() {
	Window mainWindow = new Window("Simplevaadin Application");
	Label label = new Label("Greetings");
	mainWindow.addComponent(label);
	setMainWindow(mainWindow);
}

}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages