comparison src/econnect/wp3_3/client/core/DataObject.java @ 44:5db587ba4b0f CellTable

background and border color of CellTable for selection and hover
author Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
date Fri, 07 Dec 2012 18:57:02 +0100
parents 3316a738ac72
children 8b58d9bc0bb6
comparison
equal deleted inserted replaced
43:fad6fb60a2db 44:5db587ba4b0f
133 */ 133 */
134 public final native void setHover( boolean hover ) /*-{ 134 public final native void setHover( boolean hover ) /*-{
135 this.setHover(hover); 135 this.setHover(hover);
136 }-*/; 136 }-*/;
137 137
138 /**
139 * Getter for the hover status of the DataObject
140 *
141 * @param hover boolean value is true, if the object is hovered
142 */
143 public final native boolean getHover() /*-{
144 return (this.hoverSelect == true);
145 }-*/;
146
138 /** 147 /**
139 * Setter for the selection of the DataObject 148 * Setter for the selection of the DataObject
140 * 149 *
141 * @param percentage percentage is 1 if selected or 0 if not 150 * @param percentage percentage is 1 if selected or 0 if not
142 */ 151 */