-m.mmm-ui-tvm-window.0.9.8.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-window Show documentation
Show all versions of mmm-ui-tvm-window Show documentation
Implementation of window 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 the UI framework based on TeaVM.
*
* @provides io.github.mmm.ui.api.factory.UiSingleWidgetFactoryNative
* @provides io.github.mmm.ui.api.notify.UiNotifier
*/
@SuppressWarnings("rawtypes") //
module io.github.mmm.ui.tvm.window {
requires transitive io.github.mmm.ui.api.window;
requires transitive io.github.mmm.ui.tvm.core;
provides io.github.mmm.ui.api.notify.UiNotifier with //
io.github.mmm.ui.tvm.notifier.TvmNotifier;
provides io.github.mmm.ui.api.factory.UiSingleWidgetFactoryNative with //
io.github.mmm.ui.tvm.factory.window.TvmFactoryMainWindow, //
io.github.mmm.ui.tvm.factory.window.TvmFactoryPopup, //
io.github.mmm.ui.tvm.factory.window.TvmFactoryWindow //
;
}