/*
* @(#)CollectionHintedProperty.java
*
* Copyright 2011 Instituto Superior Tecnico
* Founding Authors: Pedro Santos
*
* https://fenix-ashes.ist.utl.pt/
*
* This file is part of the Bennu-Vadin Integration Module.
*
* The Bennu-Vadin Integration Module is free software: you can
* redistribute it and/or modify it under the terms of the GNU Lesser General
* Public License as published by the Free Software Foundation, either version
* 3 of the License, or (at your option) any later version.
*
* The Bennu-Vadin Module is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the Bennu-Vadin Module. If not, see .
*
*/
//package module.vaadin.data.util;
//
//import java.util.Arrays;
//import java.util.Collection;
//import java.util.HashSet;
//
/**
*
* @author Sérgio Silva
*
*/
//public class CollectionHintedProperty extends ObjectHintedProperty> {
//
// public CollectionHintedProperty() {
// super(null,HashSet.class);
//
// }
//
// public CollectionHintedProperty(Object value, Class> type, Hint... hints) {
// super(value, type, Arrays.asList(hints));
// }
//
// public CollectionHintedProperty(Object value, Class> type, Collection hints) {
// super(value, type, hints);
// }
//
// public void add(T value) {
// final Collection curr = getValue();
// curr.add(value);
// setValue(curr);
// }
//
// public void addAll(Collection value) {
// final Collection curr = getValue();
// curr.addAll(value);
// setValue(curr);
// }
//
//}