io.github.mmm.ui.tvm.widget.number.TvmBigDecimalInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mmm-ui-tvm-number Show documentation
Show all versions of mmm-ui-tvm-number Show documentation
Implementation of number 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 */
package io.github.mmm.ui.tvm.widget.number;
import java.math.BigDecimal;
import io.github.mmm.base.number.NumberType;
import io.github.mmm.ui.api.widget.number.UiBigDecimalInput;
/**
* Implementation of {@link UiBigDecimalInput} using TeaVM.
*
* @since 1.0.0
*/
public class TvmBigDecimalInput extends TvmNumberInput implements UiBigDecimalInput {
/**
* The constructor.
*/
public TvmBigDecimalInput() {
super();
}
@Override
protected NumberType getNumberType() {
return NumberType.BIG_DECIMAL;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy