Adam Bien's Weblog
Getting The Source Code For JavaFX UI
Execute:
hg clone http://hg.openjdk.java.net/openjfx/2.1/master/rt
and you will get the source for the JavaFX UI controls with a NetBeans project.
package com.sun.javafx;
public class PlatformUtil {
public static boolean isMac() {
throw new UnsupportedOperationException("Not yet implemented");
}
public static boolean isWindows() {
throw new UnsupportedOperationException("Not yet implemented");
}
}
and referencing the jfxrt.jar, the code becomes even compilable
Enjoy!
Posted at 05:29AM Dec 03, 2011 by Adam Bien in Real World Java EE Patterns - Rethinking Best Practices | Comments[0] | Views/Hits: 4661
*NEW* Workshop: "Real World Java EE 6/7 Bootstrap" and book: Real World Java EE Night Hacks--Dissecting the Business Tier Tweet Follow @AdamBien


