Home / cuf / CUF 2.0.0
Name Modified Size InfoDownloads / Week
Parent folder
CUF-Java-2.0.0-2014-01-02.zip 2014-01-02 2.5 MB
README.txt 2014-01-02 2.6 kB
Totals: 2 Items   2.5 MB 0
CUF 2.0.0
=========
This is a API breaking release with the following changes:
o changed: switched to Java 7
o changed: switched to Maven build system and delivery
o changed: switch to JDOM 2.0.5, JGoodies Looks 2.5.3, JGoodies Forms 1.7.2
o changed: new package prefix
  + from com.sdm.util.ui.fw/com.sdm.util.ui.fw2 to net.sf.cuf.fw/net.sf.cuf.fw2 for the framework stuff
  + from com.sdm.util to net.sf.cuf for all other stuff
o changed: the Dispatcher class was removed, use the Dispatch interface and 
           the SwingDispatcher or JavaFXDispatcher class instead
o changed: the start() and stop() Methods in Application where renamed to doStart() and 
           doStop() to solve the conflict with the JavaFX Application class
o added: FilteringListModelAdapter including XML Support
o added: JavaFX Support
o fixed: TableLayout2 support now works also with Java7
o fixed: possible NPE in NewTableSorter
o changed: Switch to Intellij 13 (only relevant for CUF core development, not relevant for use)


Usage
=====
Since CUF 2.0.0, CUF is contained in Maven Central, so you can use the simple lines
    <dependency>
        <groupId>net.sf.cuf</groupId>
        <artifactId>cuf-swing</artifactId>
        <version>2.0.0</version>
    </dependency>
in your Maven pom for your CUF Swing Projects and
    <dependency>
        <groupId>net.sf.cuf</groupId>
        <artifactId>cuf-javafx</artifactId>
        <version>2.0.0</version>
    </dependency>
for your CUF JavaFX Projects to get the latest version of CUF.

As an alternative, the CUF-Java-2.0.0-2014-01-02.zip file contains most Maven artefacts as
well as some documentation:

cuf-fw-2.0.0.jar                                the CUF framework (both for Swing/JavaFX)
cuf-fw-2.0.0-sources.jar                        the CUF framework sources
cuf-swing-2.0.0.jar                             the CUF Swing support
cuf-swing-2.0.0-sources.jar                     the CUF Swing support sources
cuf-javafx-2.0.0.jar                            the CUF JavaFX support
cuf-javafx-2.0.0-sources.jar                    the CUF JavaFX support sources

cuf-csvview-2.0.0-jar-with-dependencies.jar     the executable Swing CSV sample app
cuf-csvview-2.0.0-sources.jar                   the sources for the Swing CSV sample app
cuf-csvviewfx-2.0.0-app                         the executable JavaFX CSV sample app
cuf-csvviewfx-2.0.0-sources.jar                 the sources for the JavaFX CSV sample app
cuf-swing-examples-2.0.0-sources.jar            the sources of additional CUF Swing examples

cuf-doc                                         some CUF documentation
Source: README.txt, updated 2014-01-02