blob: 64e00d15e2f395327b61fe9f162b6183b532341d [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.properties;
import org.eclipse.core.databinding.property.list.IListProperty;
import org.eclipse.osbp.runtime.web.vaadin.databinding.values.IVaadinObservableList;
/**
* {@link IListProperty} for observing an vaadin Component
*
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IVaadinListProperty extends IListProperty {
/**
* Returns an observable list observing this list property on the given
* property source.
*
* @param source
* the property source
* @return an observable list observing this value property on the given
* property source
*/
public IVaadinObservableList observe(Object source);
}