public static class

TextInputCell.ViewData

extends Object
java.lang.Object
   ↳ com.google.gwt.cell.client.TextInputCell.ViewData

Class Overview

The ViewData for this cell.

Summary

Public Constructors
TextInputCell.ViewData(String value)
Construct a ViewData instance containing a given value.
Public Methods
boolean equals(Object other)
Return true if the last and current values of this ViewData object are equal to those of the other object.
String getCurrentValue()
Return the current value of the input element.
String getLastValue()
Return the last value sent to the ValueUpdater.
int hashCode()
Return a hash code based on the last and current values.
Protected Methods
void setCurrentValue(String curValue)
Set the current value.
void setLastValue(String lastValue)
Set the last value.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public TextInputCell.ViewData (String value)

Construct a ViewData instance containing a given value.

Parameters
value a String value

Public Methods

public boolean equals (Object other)

Return true if the last and current values of this ViewData object are equal to those of the other object.

public String getCurrentValue ()

Return the current value of the input element.

Returns
  • the current value String

public String getLastValue ()

Return the last value sent to the ValueUpdater.

Returns
  • the last value String

public int hashCode ()

Return a hash code based on the last and current values.

Protected Methods

protected void setCurrentValue (String curValue)

Set the current value.

Parameters
curValue the current value

protected void setLastValue (String lastValue)

Set the last value.

Parameters
lastValue the last value
See Also