blob: 332d8f81435f1edce71c15403f4e1ae0f4847fc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
</head>
<body bgcolor="white">
<p>Provides various utility classes that implement the data layer
functionality.</p>
<p>The first {@link com.vaadin.data.Property Property} class,
{@link com.vaadin.data.util.ObjectProperty ObjectProperty}, provides
a simple class containing a typed data value. The second,
{@link com.vaadin.data.util.MethodProperty MethodProperty}, provides
a way to bind a field of an object to the Property interface using the
accessor methods for the field.</p>
<p>The next level of the data layer, the
{@link com.vaadin.data.Item Item}, is implemented by
{@link com.vaadin.data.util.BeanItem BeanItem}, though it is only a
simple wrapper to the former to provide the Item interface for any regular
Java Bean.</p>
<p>The third level, the {@link com.vaadin.data.Container Container},
has several implementations in the {@link com.vaadin.data.util}
package.</p>
<!-- <h2>Package Specification</h2> -->
<!-- Package spec here -->
<!-- Put @see and @since tags down here. -->
</body>
</html>
|