blob: c107e1788cc28893b5d6727ea94ab244f94b0518 [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.runtime.web.vaadin.common.data;
import com.vaadin.data.util.NestedMethodProperty;
// TODO: Auto-generated Javadoc
/**
* The Interface INestedPropertyAble.
*
* @param <BEANTYPE>
* the generic type
*/
public interface INestedPropertyAble<BEANTYPE> {
/**
* Adds a nested container property for the container, e.g.
* "manager.address.street".
*
* All intermediate getters must exist and should return non-null values
* when the property value is accessed. If an intermediate getter returns
* null, a null value will be returned.
*
* @param propertyId
* the property id
* @return true if the property was added
* @see NestedMethodProperty
*/
public abstract boolean addNestedContainerProperty(String propertyId);
}