/*
* Copyright (C) 2022 Archie L. Cobbs. All rights reserved.
*/
package org.dellroad.stuff.vaadin24.data;
import com.vaadin.flow.data.binder.PropertySet;
import com.vaadin.flow.shared.util.SharedUtil;
import java.util.Map;
/**
* Straightforward implementation of {@link PropertySet} with property values stored in a {@link Map}.
*
*
* This class is useful for building arbitrary property sets.
*
*
* Does not support sub-properties.
*/
@SuppressWarnings("serial")
public class MapPropertySet extends SimplePropertySet