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

io.github.mmm.ui.tvm.widget.number.TvmBigIntegerInput Maven / Gradle / Ivy

There is a newer version: 0.9.10
Show 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.tvm.widget.number;

import java.math.BigInteger;

import io.github.mmm.base.number.NumberType;
import io.github.mmm.ui.api.widget.number.UiBigIntegerInput;

/**
 * Implementation of {@link UiBigIntegerInput} using TeaVM.
 *
 * @since 1.0.0
 */
public class TvmBigIntegerInput extends TvmNumberInput implements UiBigIntegerInput {

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

    super();
  }

  @Override
  protected NumberType getNumberType() {

    return NumberType.BIG_INTEGER;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy