Class HasTextEditor

  • All Implemented Interfaces:
    Editor<java.lang.String>, LeafValueEditor<java.lang.String>, TakesValue<java.lang.String>

    public class HasTextEditor
    extends java.lang.Object
    implements LeafValueEditor<java.lang.String>
    Adapts the HasText interface to the Editor framework.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected HasTextEditor​(HasText peer)
      Constructs a new HasTextEditor that that modifies the given HasText peer instance.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getValue()
      Returns the current value.
      static HasTextEditor of​(HasText peer)
      Returns a new ValueEditor that that modifies the given HasText peer instance.
      void setValue​(java.lang.String value)
      Sets the value.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • HasTextEditor

        protected HasTextEditor​(HasText peer)
        Constructs a new HasTextEditor that that modifies the given HasText peer instance.
        Parameters:
        peer - a HasText instance
    • Method Detail

      • of

        public static HasTextEditor of​(HasText peer)
        Returns a new ValueEditor that that modifies the given HasText peer instance.
        Parameters:
        peer - a HasText instance
        Returns:
        a HasTextEditor instance
      • getValue

        public java.lang.String getValue()
        Description copied from interface: TakesValue
        Returns the current value.
        Specified by:
        getValue in interface TakesValue<java.lang.String>
        Returns:
        the value as an object of type V
        See Also:
        TakesValue.setValue(V)
      • setValue

        public void setValue​(java.lang.String value)
        Description copied from interface: TakesValue
        Sets the value.
        Specified by:
        setValue in interface TakesValue<java.lang.String>
        Parameters:
        value - a value object of type V
        See Also:
        TakesValue.getValue()