< prev index next >

modules/controls/src/main/java/javafx/scene/control/Control.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 86,95 **** --- 86,99 ---- ControlHelper.setControlAccessor(new ControlHelper.ControlAccessor() { @Override public void doProcessCSS(Node node) { ((Control) node).doProcessCSS(); } + @Override + public StringProperty skinClassNameProperty(Control control) { + return control.skinClassNameProperty(); + } }); // Ensures that the default application user agent stylesheet is loaded if (Application.getUserAgentStylesheet() == null) { PlatformImpl.setDefaultPlatformUserAgentStylesheet();
*** 653,667 **** * Keeps a reference to the name of the class currently acting as the skin. */ private String currentSkinClassName = null; private StringProperty skinClassName; ! /** ! * @treatAsPrivate ! * @since JavaFX 2.1 ! */ ! @Deprecated protected StringProperty skinClassNameProperty() { if (skinClassName == null) { skinClassName = new StyleableStringProperty() { @Override public void set(String v) { --- 657,667 ---- * Keeps a reference to the name of the class currently acting as the skin. */ private String currentSkinClassName = null; private StringProperty skinClassName; ! StringProperty skinClassNameProperty() { if (skinClassName == null) { skinClassName = new StyleableStringProperty() { @Override public void set(String v) {
< prev index next >