congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
StyleableBooleanProperty
Code IndexAdd Tabnine to your IDE (free)

How to use
StyleableBooleanProperty
in
javafx.css

Best Java code snippets using javafx.css.StyleableBooleanProperty (Showing top 20 results out of 315)

origin: jfoenixadmin/JFoenix

public void setExpanded(Boolean expanded) {
  this.expanded.set(expanded);
}
origin: jfoenixadmin/JFoenix

public Boolean isRipplerDisabled() {
  return ripplerDisabled == null ? false : ripplerDisabled.get();
}
origin: jfoenixadmin/JFoenix

@Override
public boolean isSettable(JFXTextArea control) {
  return control.disableAnimation == null || !control.disableAnimation.isBound();
}
origin: jfoenixadmin/JFoenix

colorLabelVisible.addListener(invalidate -> {
  if (displayNode != null) {
    if (colorLabelVisible.get()) {
      displayNode.setText(JFXNodeUtils.colorToHex(getSkinnable().getValue()));
    } else {
origin: jfoenixadmin/JFoenix

private void initialize() {
  this.getStyleClass().add(DEFAULT_STYLE_CLASS);
  expanded.addListener((o, oldVal, newVal) -> {
    if (newVal) {
      expand();
origin: com.jfoenix/jfoenix

colorLabelVisible.addListener(invalidate -> {
  if (displayNode != null) {
    if (colorLabelVisible.get()) {
      displayNode.setText(JFXNodeUtils.colorToHex(getSkinnable().getValue()));
    } else {
origin: com.jfoenix/jfoenix

private void initialize() {
  this.getStyleClass().add(DEFAULT_STYLE_CLASS);
  expanded.addListener((o, oldVal, newVal) -> {
    if (newVal) {
      expand();
origin: jfoenixadmin/JFoenix

public void setRipplerDisabled(Boolean disabled) {
  this.ripplerDisabled.set(disabled);
}
origin: jfoenixadmin/JFoenix

public Boolean isExpanded() {
  return expanded != null && expanded.get();
}
origin: jfoenixadmin/JFoenix

@Override
public boolean isSettable(JFXPasswordField control) {
  return control.disableAnimation == null || !control.disableAnimation.isBound();
}
origin: jfoenixadmin/JFoenix

/**
 * Setting this to true will disable this {@link JFXToggleNode} from showing focus when it receives keyboard focus.
 *
 * @param disabled True to disable visual focus and false to enable it.
 */
public final void setDisableVisualFocus(final Boolean disabled) {
  this.disableVisualFocusProperty().set(disabled);
}
origin: jfoenixadmin/JFoenix

@Override
public final Boolean isDisableAnimation() {
  return disableAnimation != null && this.disableAnimationProperty().get();
}
origin: jfoenixadmin/JFoenix

@Override
public boolean isSettable(JFXDatePicker control) {
  return control.overLay == null || !control.overLay.isBound();
}
origin: jfoenixadmin/JFoenix

@Override
public final void setLabelFloat(final boolean labelFloat) {
  this.labelFloatProperty().set(labelFloat);
}
origin: jfoenixadmin/JFoenix

@Override
public final boolean isLabelFloat() {
  return this.labelFloatProperty().get();
}
origin: jfoenixadmin/JFoenix

@Override
public boolean isSettable(JFXTextField control) {
  return control.labelFloat == null || !control.labelFloat.isBound();
}
origin: jfoenixadmin/JFoenix

@Override
public final void setDisableAnimation(final Boolean disabled) {
  this.disableAnimationProperty().set(disabled);
}
origin: jfoenixadmin/JFoenix

/**
 * Indicates whether or not this {@link JFXToggleNode} will show focus when it receives keyboard focus.
 *
 * @return False if this {@link JFXToggleNode} will show visual focus and true if it will not.
 */
public final Boolean isDisableVisualFocus() {
  return disableVisualFocus != null && this.disableVisualFocusProperty().get();
}
origin: jfoenixadmin/JFoenix

@Override
public boolean isSettable(JFXRadioButton control) {
  return control.disableAnimation == null || !control.disableAnimation.isBound();
}
origin: jfoenixadmin/JFoenix

/**
 * Setting this to true will disable this {@link JFXButton} from showing focus when it receives keyboard focus.
 * @param disabled True to disable visual focus and false to enable it.
 */
public final void setDisableVisualFocus(final Boolean disabled) {
  this.disableVisualFocusProperty().set(disabled);
}
javafx.cssStyleableBooleanProperty

Most used methods

  • set
  • get
  • addListener
  • isBound

Popular in Java

  • Creating JSON documents from java classes using gson
  • startActivity (Activity)
  • putExtra (Intent)
  • scheduleAtFixedRate (Timer)
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • Table (org.hibernate.mapping)
    A relational table
  • Runner (org.openjdk.jmh.runner)
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now