blob: d013e95c8fb7d5bf7a483cc96f2ff5db52ff97c9 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.runtime.web.vaadin.databinding.model.internal;
import java.util.ArrayList;
import java.util.Collection;
import org.eclipse.core.databinding.property.INativePropertyListener;
import org.eclipse.core.databinding.property.ISimplePropertyListener;
import org.eclipse.osbp.runtime.web.vaadin.databinding.properties.AbstractVaadinValueProperty;
import com.vaadin.data.Item;
/**
*/
public class ItemPropertySetValueProperty extends AbstractVaadinValueProperty {
public ItemPropertySetValueProperty() {
}
@Override
public INativePropertyListener adaptListener(
ISimplePropertyListener listener) {
return new ItemPropertySetChangeListener(this, listener);
}
@Override
public Object getValueType() {
return Collection.class;
}
@Override
protected Object doGetValue(Object source) {
Item item = (Item) source;
return new ArrayList<Object>(item.getItemPropertyIds());
}
@Override
protected void doSetValue(Object source, Object value) {
throw new UnsupportedOperationException();
}
}