Questions tagged [efxclipse]

e(fx)clipse is a project hosted by the eclipse foundation to provide JavaFX tooling for the Eclipse IDE and a runtime platform and libraries that can be used in a JavaFX 8 application.

e(fx)clipse is a project hosted by the eclipse foundation to provide:

  • JavaFX tooling for the Eclipse IDE
  • runtime platform and libraries that can be used in a JavaFX 8 application.
109 questions
0
votes
1 answer

Installed e(fx)clipse from the eclipse marketplace but running JavaFX application still gives error

So I downloaded the e(fx)clipse from the eclipse marketplace and when I click on New > Project > JavaFX project it creates a new project bundle but it already has errors in the import statements. The errors say : The import javafx cannot be…
rain1
  • 27
  • 7
0
votes
1 answer

How to add JavaFX-Project-Wizzard to Eclipse 4.9 with e(fx)clipse?

I am trying to create default JavaFX-projects in Eclipse Photon and therefore I wanted to use the plugin e(fx)clipse which I downloaded from the Marketplace (Eclipse Menubar > Help > Eclipse Marketplace). After a restart of Eclipse I still can not…
user9245344
0
votes
1 answer

How to install e(fx)clipse 3.4.1 in Eclipse with Java 11?

I am using the 4.9.0 Version of the Eclipse IDE with a JDK 11 and was trying to install the e(fx)clipse 3.4.1 Plugin. Somehow it could not find all resources, to install it properly and I got the following message: Error Message Are the components…
user9245344
0
votes
1 answer

Using E(fx)clipse and getting error with JRE

I currently am trying to work with JavaFX and my teach recommended we work with e(fx)clipse. I uploaded this plug in to my typical eclipse application, but every time I try and create a new project, I get an error that my JRE files cannot be…
kade
  • 55
  • 1
  • 9
0
votes
1 answer

e(fx)clipse is not working on linux

I'm trying to install the plugin e(fx)clipse on linux to work with graphic interface on my project, but after downloading and completing the installation, my application could not import classes coming from javafx. I managed to fix by installing…
0
votes
0 answers

Eclipse PDE : After Oxygen update javafx implementation in my plugin throws Classnotfound exception

Recently after updating my PDE target to oxygen rc3, the javafx implementation in my plugin throws classNotFound exception. java.lang.NoClassDefFoundError: javafx/embed/swt/FXCanvas at…
A.G
  • 3
  • 6
0
votes
2 answers

Overriding close button action in Eclipse e4

Instead of closing my Eclipse RCP application when clicking on the close button [X] I'd like the application to be minimized. In the ExitAddon I've tried this: @Override public boolean close(MWindow window) { …
Zibus69
  • 1
  • 2
0
votes
1 answer

e(fx)clipse runnable jar export - javafx.application.Application class not found

I'm coding a JavaFX app using eclipse Oxygen and e(fx)clipse plugin running on debian 9 (stretch). I've exported it as a runnable jar. When launching an error is raised: java -jar myapp.jar Exception in thread "main" java.lang.NoClassDefFoundError:…
Emmanuel BRUNET
  • 1,286
  • 3
  • 19
  • 46
0
votes
1 answer

Can't Use System Menubar Javafx

I want to add a JavaFX Menu Bar to a Stage, but have it use the System Menubar for Mac. My problem is that using: menuBar.useSystemMenuBarProperty().set(true); does not work. I believe that the problem is because my main method isn't part of a…
Jacob B.
  • 423
  • 3
  • 12
0
votes
1 answer

Invalid Thread Access for JavaFX Dialog from e4 EventHandler

I have the following event handler: public class AssignPAMHandler { private static final Logger logger = Logger.getLogger(AssignPAMHandler.class); @Execute public void execute() { System.err.println(Thread.currentThread()); …
kerner1000
  • 3,382
  • 1
  • 37
  • 57
0
votes
1 answer

Scenebuilder has no ButtonBar

I'm starting to work with SceneBuilder and want to add a ButtonBar. But the interface doesn't show the ButtonBar. I am using SceneBuilder 2.0. I can add the ButtonBar in the FXML file manually. How can I add the ButtonBar in SceneBuilder? Thanks for…
MPL
  • 384
  • 1
  • 4
  • 20
0
votes
0 answers

Error loading BorderPane in gluon project

i'm developping an app in javaFX and recently had the necessity to make it cross-platform. I did some research, found the gluon plugin and I think it is a good way to re-use the code that is already done and don't just through it away and start…
jsoares
  • 19
  • 3
0
votes
0 answers

Error on loading borderPane in gluon project

i'm developping an app in javaFX and recently had the necessity to make it cross-platform. I did some research, found the gluon plugin and I think it is a good way to re-use the code that is already done and don't just through it away and start…
jsoares
  • 19
  • 3
0
votes
2 answers

Is it possible to drag window/view out of workbench in an e4 application written in pure JavaFX?

I have an e4 application written in pure JavaFX, which you can see from my screenshot below. I have two tabs, Test and ButtonView, I can drag and drop any of them in the main application window. However I find that I can't drag any of them out of…
kenshinji
  • 2,021
  • 4
  • 25
  • 39
0
votes
1 answer

Is there no default drag and drop behavior in an e4 application created by e(fx)clipse?

I just created an e4 application by e(fx)clipse following this tutorial, then I added two parts in my application as following screenshot. And then when I mess around with this application, I found that these two tabs can't be drag and drop.…
kenshinji
  • 2,021
  • 4
  • 25
  • 39