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

us.ihmc.scs2.sessionVisualizer.jfx.tools.IntegerConverter Maven / Gradle / Ivy

package us.ihmc.scs2.sessionVisualizer.jfx.tools;

import javafx.util.converter.IntegerStringConverter;

public class IntegerConverter extends IntegerStringConverter
{
   @Override
   public Integer fromString(String value)
   {
      if (value == null || value.isEmpty())
         return 0;
      return super.fromString(value);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy