--- old/modules/javafx.graphics/src/main/java/com/sun/javafx/tk/quantum/EmbeddedStage.java 2017-03-10 11:56:41.153425445 -0800 +++ new/modules/javafx.graphics/src/main/java/com/sun/javafx/tk/quantum/EmbeddedStage.java 2017-03-10 11:56:40.929425446 -0800 @@ -309,4 +309,15 @@ @Override public void setRTL(boolean b) { } + @Override + public void setEnabled(boolean enabled) { + } + + @Override + public long getRawHandle() { + /* Perhaps this could return the ID for the window in which this + * stage is embedded, but there is no current requirement for that. + */ + return 0L; + } }