com.vaadin.shared.ui.textfield.

Interface AbstractTextFieldClientRpc

  • All Superinterfaces:

    ClientRpc, Serializable

    public interface AbstractTextFieldClientRpc
    extends ClientRpc

    Server to client RPC interface for AbstractTextField.

    Since:

    8.0

    • Method Summary

      All Methods
      Modifier and Type Method Description
      void selectAll()

      Selects everything in the field.

      void selectRange​(int start, int length)

      Selects the given range in the field.

    • Method Detail

      • selectRange

        void selectRange​(int start,
                         int length)

        Selects the given range in the field.

        Parameters:

        start - the start of the range

        length - the length to select

      • selectAll

        void selectAll()

        Selects everything in the field.