Is JavaFX open source? [closed] - javafx-2

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
When install JDK I found src.zip in C:\Program Files\Java\jdk1.7.xxx folder, but I can not find the javafx source code, I googled but found nothing (on http://openjdk.java.net/projects/openjfx/)
So, is javafx open source, and where can I get?

Update Sep 202
For further info see the closely related StackOverflow question:
JavaFX and OpenJDK
I'd close this question of a duplicate of the above one, but it has already been closed as off-topic and cannot be closed as a duplicate by me. Regardless, the linked question hasn't been closed as off-topic as of now and provides more answers with more detail, so it is a better place to look if you need more information,
Update Dec 2019
For current information on Open Source JavaFX, visit https://openjfx.io.
The current open source code repository for JavaFX is at https://github.com/openjdk/jfx.
At the source location linked you can find license files for open JavaFX (currently this license matches the license for open JDK).
Previous Answer
As of February 2013, JavaFX is partially open source and should become almost fully open source over the next few months. The source is hosted as part of the open-jfx project that you linked in your question.
The manifest of the tip of the JavaFX development branch for Java 8 is:
http://hg.openjdk.java.net/openjfx/8/master/rt/file/tip
The same page has a zip link, which allows you to easily download the available JavaFX source as a zip file.
The JavaFX source code is not included in the jdk src.zip file currently, but should be eventually before Java 8 is released.
Update
A February 2013 update for JavaFX OpenSource status has been published by the JavaFX development lead.

In short, it is not open source in that it is free to change & distribute for any purpose. JavaFX is licensed for internal use, excluding what they call commercial features.
Use of the Commercial Features for any commercial or production purpose requires a separate license from Oracle.
The license details for JavaFX are outlined in full here. (PDF version available from here)
You can get JavaFX from here.

Related

best practises for working together on an android project [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
what programs, methods should you use if you want to program with a friend on an android project like a company does?
are there any built in methods? or should you use a third party platform?
Your two tags already address everything needed to synchronize development between multiple developers. Android Studio for the development and git/Github for sharing a codebase. If you don't know how to use git, Github has a good getting-started guide available.
Using git with Android Studio is very easy. Android Studio will usually auto-detect a git repository when you start out, and it has its own built-in version control tools (which are compatible with git). If you don't want to use the built-in tools, you can always use the command line git tools, or Github's desktop applications.
Beyond an IDE and a way to sync code, the rest is up to you. Professional development teams have tons of collaboration tools they use, but any good teams works because of the people, not the tools. You might check out Trello for tracking to-dos and project details, but there is plenty out there, and the right answer is to try things and see what works for you.
You don't need any third party software for this. It's time for you to learn version control. I use git for version control and github/bitbucket for hosting.
Once you have a repo hosted in either, you can add members in that repo.
You can then have a local working copy of the project, preferrably work on different branches based on features or issues. You can then review each other's work before merging to the main branch.
Android studio has built in plugins for git integration.
Now this is just a overview. Read Git scm documentation, set up some dummy projects and start exploring the features.

Where can I download the JavaFX 2.2 source code? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I need to link in Netbeans 7.2.1 to the source of JavaFX 2.2.3, I've looked on the Oracle web site ... but I didn't find it ! any help is a welcome plz
JavaFX 2.2 is only partially open source.
You can download the parts which are open from the zip link at:
http://hg.openjdk.java.net/openjfx/2.2/master/rt
JavaFX 8
JavaFX 8 is completely open source today.
Source for building JavaFX 8 (and the SceneBuilder design tool) is available at:
http://hg.openjdk.java.net/openjfx/8/master/rt
Source code for later versions (including Java 8 updates), is in the source code forest, an overview of which is at:
http://hg.openjdk.java.net/openjfx
Instructions for building JavaFX 8 with OpenJDK 8
If you don't need to build JavaFX 8 and just want the runtime sources in a zip, those are in the javafx-src.zip file from the JDK 8 download.
On OS X, the javafx-src.zip file is located at:
/Library/Java/JavaVirtualMachines/jdk1.8.0.jdk/Contents/Home/javafx-src.zip
IDE Setup
Instructions for configuring Idea to understand the source are here:
JavaFX source code not showing
For NetBeans, you could try:
How to attach missing java JDK sources in Netbeans 7
believe me if you already have installed latest version of jdk and set jdk version in netbeans then it will not ask.
in my case i found jar files in folder C:\Program Files\Java\jdk1.7.0_07\jre\lib
just add all jar file in your project and you have done.

Where can I find Database Schema View for Database Project in VS2012 Final Release? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am looking for Database Schema View in VS2012 Final Release for my Database Project which was created in VS2010. In earlier version I was using SSDT and Power Tools. Is it required to used both these tools in VS2012 Final Release also. I am not able to find on Solution Explorer . Please assist me where can I find Schema View button to toggle my solutionview and schema view. I am using VS2012 Ultimate x64 edition on Windows 7 Ultimate
As you mentioned this feature is in the SSDT Power Tools, although VS2012 compatibility is yet to be introduced.
However according to Sam Hughes [MSFT], it shouldn't be too far away:
Written August 23, 2012
I am literally working on [SSDT power tools for VS2012] right now, but I'm not prepared to
publicly announce a date other than "soon".
Source:
http://visualstudiogallery.msdn.microsoft.com/9b0228c6-15d1-44de-9279-66dde12bf861
You can't, as that little gem is one of the things missing from SSDT.

Visual Designer for JSF [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am using Netbeans for JSF development and...is there any Visual Web Designer plugin for JSF in Netbeans 6.9.1?
I am a sloppy guy, so without a visual aid for web development, I pretty much messed up my web UI.
A little bit late but it might help. Under Netbeans 7.0 you can install Visual Web as a plugin in the plugin manager from this catalog
catalog
Hope it helps
Mark
Visual aid is no more available since Netbeans 6.9 release.
You can find those in previous netbeans version. I have seen it in 6.7, where you install JSF pluggin and can find an option to create Visual JSF page
Check following links for more info
Link 1
Link 2
There are so many jsf component libraries which is one of the reasons that there will never be a decent designer. All there is content assist available in all major IDEs and IMHO that is all you need. Generated code from designers isnt worth much most of the time anyway.
There is Rich faces plugin from JBoss in Eclipse
There is OEOPE from Oracle where is JSF designer for Eclipse
Netbeans doesnt have any now
IntelliJ Idea doesnt have WYSIWYG either as far as I know
To find what Netbeans recommends, go to
http://wiki.netbeans.org/VisualWebSupport

Looking for free way to develop Excel add-ins using IronPython? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I don't know much about VSTO or VSTA, but I think you need the full version of Visual Studio to use either one. I can't convince my boss to buy us this, but I would like to develop Excel addins in IronPython. I've looked at several tutorials that show you how interact with Excel using IronPython, but I can't find much about developing addins. Can you recommend any resources?
Is my only option making a COM addin? If so, does anybody know of any example of this using IronPython?
I'm sorry to say I can't go with any options that include spending money. I've got the free Visual Studio Shell and IronPython tools for visual studio setup for free right now.
First, you are right, unfortunately VSTO is not supported in Visual Studio Express, the free version of VS.
Then, you may want to look into ExcelDNA. I haven't tried it specifically with IronPython, but it should work. ExcelDNA is a free library which allows you to build xll Excel add-ins and use .NET, up to version 4.
Another codeplex project might be of help: xll.codeplex.com. It really depends on how easy it is for you to call IronPython from C++.
Is a "plain old" VBA add-in out of the question? It's going to be smaller, quicker to implement, easier to deploy.

Resources