Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Efxclipse/Runtime/Recipes"

m (Tom.schindl.bestsolution.at moved page Efxclipse/Recipes to Efxclipse/Runtime/Recipes)
(Logging)
Line 3: Line 3:
 
= Core =
 
= Core =
 
== Logging ==
 
== Logging ==
 +
 +
e(fx)clipse has it's own logging facade which allows to plug-in different log frameworks in the back. Currently available are:
 +
 +
* java.util.Logging (default)
 +
* log4j by adding <code>org.eclipse.fx.core.log4j</code>
 +
 +
=== Usage ===
 +
 
== DI ==
 
== DI ==

Revision as of 16:59, 6 December 2013

This page holds best practice recipes when writing JavaFX application using e(fx)clipse

Core

Logging

e(fx)clipse has it's own logging facade which allows to plug-in different log frameworks in the back. Currently available are:

  • java.util.Logging (default)
  • log4j by adding org.eclipse.fx.core.log4j

Usage

DI

Back to the top