-m.mmm-ui-tvm-chart.0.9.3.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mmm-ui-tvm-chart Show documentation
Show all versions of mmm-ui-tvm-chart Show documentation
Implementation of chart widgets for TeaVM.
/*
* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
/**
* Provides the implementation of UI chart widgets for TeaVM.
*
* @provides io.github.mmm.ui.api.factory.UiSingleWidgetFactoryNative
*/
@SuppressWarnings("rawtypes") //
module io.github.mmm.ui.tvm.chart {
requires transitive io.github.mmm.ui.api.chart;
requires transitive io.github.mmm.ui.tvm.core;
provides io.github.mmm.ui.api.factory.UiSingleWidgetFactoryNative with //
io.github.mmm.ui.tvm.factory.chart.TvmFactoryBarChartHorizontal, //
io.github.mmm.ui.tvm.factory.chart.TvmFactoryBarChartVertical, //
io.github.mmm.ui.tvm.factory.chart.TvmFactoryLineChart, //
io.github.mmm.ui.tvm.factory.chart.TvmFactoryPieChart//
;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy