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

com.cedarsoft.commons.javafx.StyleHelper Maven / Gradle / Ivy

There is a newer version: 8.9.2
Show newest version
package com.cedarsoft.commons.javafx;

import javax.annotation.Nonnull;

import javafx.scene.Node;

/**
 * Helper class with styles
 */
public class StyleHelper {
  private StyleHelper() {
  }

  @Nonnull
  public static  T withStyleClass(@Nonnull T node, @Nonnull String styleClass) {
    node.getStyleClass().add(styleClass);
    return node;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy