Edit C:\Program Files\Java\jdk1.8.0_121\javafx\beans\value\WritableValue.java
/* * 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; /** * A {@code WritableValue} is an entity that wraps a value that can be read and * set. In general this interface should not be implemented directly but one of * its sub-interfaces ({@code WritableBooleanValue} etc.). * * @see WritableBooleanValue * @see WritableDoubleValue * @see WritableFloatValue * @see WritableIntegerValue * @see WritableLongValue * @see WritableNumberValue * @see WritableObjectValue * @see WritableStringValue * * @param <T> * The type of the wrapped value * * * @since JavaFX 2.0 */ public interface WritableValue<T> { /** * Get the wrapped value. * * @return The current value */ T getValue(); /** * Set the wrapped value. * * @param value * The new value */ void setValue(T value); }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de