summaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/fields/FormManyToMany.java
blob: 43fba20f338a8bc6f3d159c5b7a78561ef3f38f5 (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
package com.vaadin.tests.fields;

import com.vaadin.tests.components.TestBase;

public class FormManyToMany extends TestBase {

    @Override
    protected void setup() {
        // TODO implement

        // TODO note that in one direction, a setter is used and automatically
        // updates the other direction (setting the Roles of a User updates
        // Roles), whereas in the other direction (updating the list of Users
        // for a Role), manual updates are needed at commit time to keep the
        // Users consistent with Roles
    }

    @Override
    protected String getDescription() {
        return "Forms which allow editing of a many-to-many mapping between users and roles";
    }

    @Override
    protected Integer getTicketNumber() {
        return null;
    }

}