From 9c6831bab067ccdb47c3063f2e77d3c0e7fe3440 Mon Sep 17 00:00:00 2001 From: Pekka Hyvönen Date: Mon, 2 Jan 2017 13:40:48 +0200 Subject: Update documentation, BoV chapters 1 - 5.3 (#8085) * Update documentation chapters 1 - 5.3 Images and diagrams have not been updated, but unnecessary images have been removed. * Sync application declarative and architecture sections source code. Screenshot image is updated to match the source code. * Old datamodel image is removed. * Ivy install image is removed. * Remove unnecessary linking / reference --- .../introduction/intro-walkthrough.asciidoc | 23 ---------------------- 1 file changed, 23 deletions(-) (limited to 'documentation/introduction/intro-walkthrough.asciidoc') diff --git a/documentation/introduction/intro-walkthrough.asciidoc b/documentation/introduction/intro-walkthrough.asciidoc index ad3519ccd7..185498f627 100644 --- a/documentation/introduction/intro-walkthrough.asciidoc +++ b/documentation/introduction/intro-walkthrough.asciidoc @@ -18,7 +18,6 @@ import com.vaadin.ui.Label; import com.vaadin.ui.UI; @Title("My UI") -@Theme("valo") public class HelloWorld extends UI { @Override protected void init(VaadinRequest request) { @@ -69,25 +68,3 @@ deploy it to a server, as explained in <>. During development, you typically deploy to an application server integrated with the IDE. - -Developing a pure client-side application, you could write a Hello World just as -easily, and also in Java: - - -[source, java] ----- -public class HelloWorld implements EntryPoint { - @Override - public void onModuleLoad() { - RootPanel.get().add(new Label("Hello, world!")); - } -} ----- - -We do not set the title here, because it is usually defined in the HTML page in -which the code is executed. The application would be compiled into JavaScript -with the Vaadin Client Compiler (or GWT Compiler). It is more typical, however, -to write client-side widgets, which you can then use from a server-side Vaadin -application. For more information regarding client-side development, see -<>. -- cgit v1.2.3