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

io.github.mmm.ui.fx.notifier.FxNotifier Maven / Gradle / Ivy

The newest version!
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package io.github.mmm.ui.fx.notifier;

import io.github.mmm.ui.api.notify.UiNotification;
import io.github.mmm.ui.api.window.notiy.AbstractUiNotifier;

/**
 * Implementation of {@link io.github.mmm.ui.api.notifier.UiNotifier} for JavaFx.
 *
 * @since 1.0.0
 */
public class FxNotifier extends AbstractUiNotifier {

  /**
   * The constructor.
   */
  public FxNotifier() {

    super();
  }

  @Override
  public void showGrowl(UiNotification notification) {

    // TODO implement growl for JavaFx
    showPopupOk(notification);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy