diff options
author | Alejandro <alejandro.d.a@gmail.com> | 2017-03-27 15:18:36 +0200 |
---|---|---|
committer | Pekka Hyvönen <pekka@vaadin.com> | 2017-03-28 09:54:55 +0300 |
commit | d73690b2a909597cfbadac681e6fe2119fc57e79 (patch) | |
tree | df9939823dff2c67de72c4597a1a6c2fab572624 | |
parent | 4c450752a112f5fafb47b074169db7a133cda3ee (diff) | |
download | vaadin-framework-d73690b2a909597cfbadac681e6fe2119fc57e79.tar.gz vaadin-framework-d73690b2a909597cfbadac681e6fe2119fc57e79.zip |
Fixed links to domain model
-rw-r--r-- | documentation/tutorial.adoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/tutorial.adoc b/documentation/tutorial.adoc index 40f9223b24..f84a4ddca5 100644 --- a/documentation/tutorial.adoc +++ b/documentation/tutorial.adoc @@ -261,9 +261,9 @@ clipboard. Select the text content of the whole class from your browser, choose "Edit > Copy", focus the node representing the [packagename]#my.vaadin.app# Java package in Eclipse's Java Resources view and choose "Edit > Paste". Eclipse is smart enough to automatically create a properly named Java file for the class. - * https://raw.githubusercontent.com/vaadin/tutorial/master/src/main/java/my/vaadin/app/CustomerStatus.java[CustomerStatus] - this is a simple enum class - * https://raw.githubusercontent.com/vaadin/tutorial/master/src/main/java/my/vaadin/app/Customer.java[Customer] - this is the main domain object, a basic Java bean that we will be using in our example - * https://raw.githubusercontent.com/vaadin/tutorial/master/src/main/java/my/vaadin/app/CustomerService.java[CustomerService] - this is a simple facade via which you can request and modify [classname]#Customer# instances. + * https://raw.githubusercontent.com/vaadin/tutorial/v7/src/main/java/my/vaadin/app/CustomerStatus.java[CustomerStatus] - this is a simple enum class + * https://raw.githubusercontent.com/vaadin/tutorial/v7/src/main/java/my/vaadin/app/Customer.java[Customer] - this is the main domain object, a basic Java bean that we will be using in our example + * https://raw.githubusercontent.com/vaadin/tutorial/v7/src/main/java/my/vaadin/app/CustomerService.java[CustomerService] - this is a simple facade via which you can request and modify [classname]#Customer# instances. You can think of this as your entry point to your fake database. In the next steps, we will be using these classes and build a UI around them. |