/*
* @(#)ObjectHintedProperty.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.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import pt.ist.vaadinframework.data.HintedProperty;
import com.vaadin.data.util.ObjectProperty;
/**
*
* @author Pedro Santos
* @author Sérgio Silva
*
*/
public class ObjectHintedProperty extends ObjectProperty implements HintedProperty {
private Collection hints;
public ObjectHintedProperty(Object value, Class type, Collection hints) {
super(value, type);
this.hints = hints;
}
public ObjectHintedProperty(Object value, Class type, Hint... hints) {
super(value, type);
this.hints = new ArrayList(Arrays.asList(hints));
}
@Override
public void addHint(Hint hint) {
if (hints == null) {
hints = new ArrayList();
}
hints.add(hint);
}
@Override
public Collection getHints() {
if (hints != null) {
return Collections.unmodifiableCollection(hints);
}
return Collections.emptyList();
}
}