Validator.java 321 B

12345678910111213141516
  1. package io.card.payment;
  2. /* Validator.java
  3. * See the file "LICENSE.md" for the full license governing this code.
  4. */
  5. import android.text.InputFilter;
  6. import android.text.TextWatcher;
  7. interface Validator extends TextWatcher, InputFilter {
  8. String getValue();
  9. boolean isValid();
  10. boolean hasFullLength();
  11. }