Edit C:\Program Files\Java\jdk1.8.0_121\javafx\css\SimpleStyleableIntegerProperty.java
/* * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.css; import javafx.beans.NamedArg; import javafx.beans.property.SimpleIntegerProperty; /** * This class extends {@code SimpleIntegerProperty} and provides a full * implementation of a {@code StyleableProperty}. * * This class is used to make a {@link javafx.beans.property.IntegerProperty}, * that would otherwise be implemented as a {@link SimpleIntegerProperty}, * style‑able by CSS. * * @see javafx.beans.property.SimpleIntegerProperty * @see CssMetaData * @see StyleableProperty * @see StyleableIntegerProperty * @since JavaFX 8.0 */ public class SimpleStyleableIntegerProperty extends StyleableIntegerProperty { private static final Object DEFAULT_BEAN = null; private static final String DEFAULT_NAME = ""; private final Object bean; private final String name; private final CssMetaData<? extends Styleable, Number> cssMetaData; /** * The constructor of the {@code SimpleStyleableIntegerProperty}. * @param cssMetaData * the CssMetaData associated with this {@code StyleableProperty} */ public SimpleStyleableIntegerProperty(@NamedArg("cssMetaData") CssMetaData<? extends Styleable, Number> cssMetaData) { this(cssMetaData, DEFAULT_BEAN, DEFAULT_NAME); } /** * The constructor of the {@code SimpleStyleableIntegerProperty}. * * @param cssMetaData * the CssMetaData associated with this {@code StyleableProperty} * @param initialValue * the initial value of the wrapped {@code Object} */ public SimpleStyleableIntegerProperty(@NamedArg("cssMetaData") CssMetaData<? extends Styleable, Number> cssMetaData, @NamedArg("initialValue") Integer initialValue) { this(cssMetaData, DEFAULT_BEAN, DEFAULT_NAME, initialValue); } /** * The constructor of the {@code SimpleStyleableIntegerProperty}. * * @param cssMetaData * the CssMetaData associated with this {@code StyleableProperty} * @param bean * the bean of this {@code IntegerProperty} * @param name * the name of this {@code IntegerProperty} */ public SimpleStyleableIntegerProperty(@NamedArg("cssMetaData") CssMetaData<? extends Styleable, Number> cssMetaData, @NamedArg("bean") Object bean, @NamedArg("name") String name) { this.bean = bean; this.name = (name == null) ? DEFAULT_NAME : name; this.cssMetaData = cssMetaData; } /** * The constructor of the {@code SimpleStyleableIntegerProperty}. * * @param cssMetaData * the CssMetaData associated with this {@code StyleableProperty} * @param bean * the bean of this {@code IntegerProperty} * @param name * the name of this {@code IntegerProperty} * @param initialValue * the initial value of the wrapped {@code Object} */ public SimpleStyleableIntegerProperty(@NamedArg("cssMetaData") CssMetaData<? extends Styleable, Number> cssMetaData, @NamedArg("bean") Object bean, @NamedArg("name") String name, @NamedArg("initialValue") Integer initialValue) { super(initialValue); this.bean = bean; this.name = (name == null) ? DEFAULT_NAME : name; this.cssMetaData = cssMetaData; } /** * {@inheritDoc} */ @Override public Object getBean() { return bean; } /** * {@inheritDoc} */ @Override public String getName() { return name; } /** {@inheritDoc} */ @Override public final CssMetaData<? extends Styleable, Number> getCssMetaData() { return cssMetaData; } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de