Favor (use Generics):
ObjectProperty property = new ObjectProperty("Hello");
Over (from Vaadin API: "Since Vaadin 7, only values of the correct type are accepted, and no automatic conversions are performed."):
ObjectProperty property = new ObjectProperty("Hello",String.class);
0 comments:
Post a Comment