List of usage examples for com.google.gwt.user.client.ui UIObject toString
@Override
public String toString()
From source file:com.totsp.gwittir.client.validator.StyleValidationFeedback.java
License:Open Source License
public void resolve(Object source) { UIObject object = (UIObject) source; String previousStyle = (String) this.previousStyles.get(source); if (previousStyle != null) { GWT.log("Reverting to style:" + previousStyle, null); object.setStyleName(previousStyle); GWT.log(object.toString(), null); this.previousStyles.remove(source); }//ww w . j av a 2 s. c o m }