项目作者: cathive

项目描述 :
Google Guice integration for FXML-based JavaFX applications
高级语言: Java
项目地址: git://github.com/cathive/fx-guice.git
创建时间: 2012-08-24T07:39:38Z
项目社区:https://github.com/cathive/fx-guice

开源协议:Apache License 2.0

下载


fx-guice

Build Status

This library provides some useful classes that help you integrate
Google Guice into your JavaFX based applications.

The idea for that class was born after I read an article on
fxexperience.com (http://fxexperience.com/2011/10/fxml-guice/).
Therefore,… credits go to ‘Richard Bair’ for the initial idea.

A compiled and ready-to-use version of this library can be found in the
Sonatype OSS Maven Repository (oss.sonatype.org). To use the library
in your Maven based projects just add the following lines to your
‘pom.xml’:

  1. <dependency>
  2. <groupId>com.cathive.fx</groupId>
  3. <artifactId>fx-guice</artifactId>
  4. <version>${fx-guice.version}</version>
  5. </dependency>

In your project all you need to do is create an application class
that extends com.cathive.fx.guice.GuiceApplication instead of the
javafx.application.Application class that ships with JavaFX.

Next step: instead of using javafx.fxml.FXMLLoader to load FXML files
you use com.cathive.fx.guice.GuiceFXMLLoader… that’s basically it!