JavaFX Script
This article includes a list of general references, but it lacks sufficient corresponding inline citations. (April 2011) |
| JavaFX | |
|---|---|
| Developer | Sun Microsystems |
| Stable release | 1.2
/ June 2, 2009 |
| Platform | Java Runtime Environment |
| OS | Cross-platform |
| License | GPL |
| Website | http://javafx.com/ |
JavaFX Script was a scripting language designed by Sun Microsystems, forming part of the JavaFX family of technologies on the Java Platform.
JavaFX targeted the Rich Internet Application domain (competing with Adobe Flex and Microsoft Silverlight), specializing in rapid development of visually rich applications for the desktop and mobile markets. JavaFX Script works with integrated development environments such as NetBeans, Eclipse and IntelliJ IDEA. JavaFX is released under the GNU General Public License, via the Sun sponsored OpenJFX project.
History
JavaFX Script used to be called F3 for Form Follows Function. F3 was primarily developed by Chris Oliver, who became a Sun employee through their acquisition of SeeBeyond Technology Corporation in September 2005.
Its name was changed to JavaFX Script, and it became open sourced at JavaOne 2007.
JavaFX 1.0 was released on December 4, 2008.[1] On September 10, 2010 Oracle announced at JavaOne that JavaFX Script would be discontinued, although the JavaFX API would be made available to other languages for the Java Virtual Machine.[2]
On September 27, 2010 Stephen Chin announced Visage a declarative user-interface language based on the JavaFX Script with enhancements.[3]
On April 8, 2012 a project was created with the intention of resurrecting and enhancing the original F3 programming language, but the project appears to have been discontinued in August 2015.[4]
Features
JavaFX Script was a compiled, statically typed, declarative scripting language for the Java Platform. It provided automatic data-binding, mutation triggers and declarative animation, using an expression language syntax (all code blocks potentially yield values.)
Through its standard JavaFX APIs it supported retained mode vector graphics, video playback and standard Swing components.
Although F3 began life as an interpreted language, prior to the first preview release (Q3 2008) JavaFX Script had shifted focus to being predominantly compiled. Interpreted JavaFX Script is still possible, via the JSR 223 'Scripting for Java' bridge. Because it is built on top of the Java Platform, it is easy to use Java classes in JavaFX Script code. Compiled JavaFX Script was able to run on any platform that has a recent Java Runtime installed.
Syntax
JavaFX Script's declarative style for constructing user interfaces can provide shorter and more readable source code than the more verbose series of method calls required to construct an equivalent interface if written in JavaFX Script's procedural style.
Here is a simple Hello world program for JavaFX Script:
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.text.Text;
import javafx.scene.text.Font;
Stage {
title: "Hello World"
width: 250
height: 80
scene: Scene {
content: Text {
font : Font {
size : 24
}
x: 10, y: 30
content: "Hello World"
}
}
}
It shows the following window/frame :
This program can also be written in JavaFX Script using a procedural style this way:
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.text.Text;
import javafx.scene.text.Font;
var myFont: Font = Font.font(null, 24);
var myText: Text = new Text();
myText.font = myFont;
myText.x = 10;
myText.y = 30;
myText.content = "Hello World";
var myScene: Scene = new Scene();
myScene.content = myText;
var myStage: Stage = new Stage();
myStage.title = "Hello World";
myStage.width = 250;
myStage.height = 80;
myStage.scene = myScene;
See also
- Java applet, a means of deploying Java applications inside a web page.
- JavaFX, a family of products and technologies intended to be used to create Rich Internet Applications (RIAs).
- Swing, the underlying user interface library employed by JavaFX Script.
- Curl (programming language), also with a declarative mode with optional typing
References
- ^ "Sun Microsystems Unveils JavaFX 1.0 with Immersive Media Capabilities Targeted at Market's 800 Million Java Powered Desktops". 2008-12-04.
- ^ JavaFX 2010-2011 Roadmap Archived 2010-10-29 at the Wayback Machine
- ^ "Steve On Java » Announcing Visage – The DSL for Writing UIs". steveonjava.com. Archived from the original on 2010-10-01.
- ^ unktomi (2022-07-31), unktomi/form-follows-function, retrieved 2023-03-30
Bibliography
- Morris, Simon (November 23, 2009), JavaFX in Action, Manning, p. 375, ISBN 978-1-933988-99-3
- Topley, Kim (October 12, 2009), JavaFX Developer's Guide, Addison-Wesley Professional, p. 640, ISBN 978-0-321-60165-0
- Weaver, James L.; Gao, Weiqi; Chin, Stephen; Iverson, Dean (June 22, 2009), Pro JavaFX Platform: Script, Desktop and Mobile RIA with Java Technology, Apress, p. 500, ISBN 978-1-4302-1875-3, archived from the original on August 15, 2009, retrieved August 2, 2009
- Clarke, Jim; Connors, Jim; J. Bruno, Eric (June 15, 2009), JavaFX: Developing Rich Internet Applications, Prentice Hall, p. 384, ISBN 978-0-13-701287-9
- Anderson, Gail; Anderson, Paul (June 15, 2009), Essential JavaFX, Prentice Hall, p. 360, ISBN 978-0-13-704279-1
- Weaver, James L. (May 4, 2009), JavaFX Script: Dynamic Java Scripting for Rich Internet/Client-side Applications, Apress, p. 200, ISBN 978-1-59059-945-7, archived from the original on March 23, 2012, retrieved August 2, 2009
External links
- JavaFX Main Site Archived 2011-07-13 at the Wayback Machine
- Sun's JavaFX overview
- Chris Oliver's blog, F3 category Archived 2013-12-12 at the Wayback Machine
- James Weaver's Learn JavaFX Weblog
- Sun.com - Learning JavaFX Script: An Introduction for Java Programmers
- Sun Plans Version of Java for Web-Linked Cellphones (New York Times article)
- Deprecated link at archive.today (archived 2013-01-19) (CNET article)
- Planet JFX Community Wiki (how-to's, code samples, tutorials)
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.
