/* * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.beans.value; import javafx.collections.ObservableMap; /** * A writable reference to an {@link javafx.collections.ObservableMap}. * * @see javafx.collections.ObservableMap * @see javafx.beans.value.WritableObjectValue * @see javafx.beans.value.WritableMapValue * * @param the type of the key elements of the {@code Map} * @param the type of the value elements of the {@code Map} * @since JavaFX 2.1 */ public interface WritableMapValue extends WritableObjectValue>, ObservableMap { }