- Timestamp:
- 06/09/08 07:23:42 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/5.2/src/com/itmill/toolkit/ui/ProgressIndicator.java
r3162 r4798 215 215 216 216 /** 217 * Sets the ProgressIndicator to indeterminate mode.217 * Sets wheter or not the ProgressIndicator is indeterminate. 218 218 * 219 219 * @param newValue … … 222 222 public void setIndeterminate(boolean newValue) { 223 223 indeterminate = newValue; 224 requestRepaint(); 225 } 226 227 /** 228 * Gets whether or not the ProgressIndicator is indeterminate. 229 * 230 * @return true to set to indeterminate mode. 231 */ 232 public boolean isIndeterminate() { 233 return indeterminate; 224 234 } 225 235 … … 232 242 public void setPollingInterval(int newValue) { 233 243 pollingInterval = newValue; 244 requestRepaint(); 234 245 } 235 246
