All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ity.utility-fx-icons-ikonli.13.1.1.source-code.module-info Maven / Gradle / Ivy

There is a newer version: 13.1.2
Show newest version
import com.dua3.utility.fx.icons.IconProvider;
import com.dua3.utility.fx.icons.ikonli.IkonliIconProvider;

/**
 * This module is a Java module that provides integration of the Ikonli library with JavaFX Icons.
 * It exports the package com.dua3.fx.icons.ikonli and opens the same package for reflective access.
 * 

* This module requires the following external dependencies: *

    *
  • org.apache.logging.log4j *
  • org.kordamp.ikonli.core *
  • org.kordamp.ikonli.javafx *
  • com.dua3.fx.icons *
  • javafx.graphics *
*

* This module also uses the interface org.kordamp.ikonli.IkonHandler and provides an implementation * of the com.dua3.fx.icons.IconProvider interface with the class com.dua3.fx.icons.ikonli.IkonliIconProvider. *

* This module has a dependency on the {@code com.dua3.cabe.annotations} module for the use of null check injection * into the compiled classes. */ module com.dua3.utility.fx.icons.ikonli { exports com.dua3.utility.fx.icons.ikonli; opens com.dua3.utility.fx.icons.ikonli; requires org.apache.logging.log4j; requires org.kordamp.ikonli.core; requires org.kordamp.ikonli.javafx; requires transitive com.dua3.utility.fx.icons; requires javafx.graphics; uses org.kordamp.ikonli.IkonHandler; provides IconProvider with IkonliIconProvider; requires static com.dua3.cabe.annotations; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy