blob: aeb19849374c632552fec99054136471fc549c1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package com.vaadin.tests.components.customfield;
public class EmbeddedFormExample extends AbstractNestedFormExample {
@Override
protected void setup() {
super.setup(true);
}
@Override
protected String getDescription() {
return "An address form embedded in a person form.\n"
+ "The address fields are placed in the layout of the parent (person) form.\n"
+ "Note that in many cases the same result can be achieved with a property that maps subfields to the top level.";
}
}
|