Eclipse is not recognizing CSS from the project with JavaFX

6

My project with JavaFX simply stopped recognizing my .css and the following error appears:

An error has occurred. See error log for more details.
java.lang.NullPointerException

No error log appears as follows:

Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench".
java.lang.NullPointerException
    at org.eclipse.ui.part.PageBookView.showPageRec(PageBookView.java:994)
    at org.eclipse.ui.internal.console.ConsoleView.showPageRec(ConsoleView.java:171)
    at org.eclipse.ui.part.PageBookView.partClosed(PageBookView.java:809)
    at org.eclipse.ui.internal.console.ConsoleView.partClosed(ConsoleView.java:139)
    at org.eclipse.ui.part.PageBookView$4.partClosed(PageBookView.java:1086)
    at org.eclipse.ui.internal.WorkbenchPage$23.run(WorkbenchPage.java:4966)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.ui.internal.WorkbenchPage.firePartClosed(WorkbenchPage.java:4963)
...

Does anyone know how to solve this? I would like to be able to edit css by eclipse itself ...

    
asked by anonymous 06.10.2015 / 01:00

2 answers

1

I updated my version of eclipse and solved it. Later he gave the same problem again. The solution I found was to switch from IDE or edit the CSS in hand even by text editing documents. Thanks to everyone who gave you suggestions!

    
05.12.2015 / 17:45
1

Try removing this plugin and then adding it again. You can remove by going to the option:

  

Help - > Eclipse Marketplace - > Installed

Here you will see all installed plugins and a removal button.

    
23.11.2015 / 22:22