/* * Copyright 2000-2016 Vaadin Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.vaadin.v7.ui; import com.vaadin.shared.communication.PushMode; import com.vaadin.ui.PushConfiguration; import com.vaadin.ui.UI; import com.vaadin.v7.data.Property; import com.vaadin.v7.shared.ui.progressindicator.ProgressIndicatorServerRpc; import com.vaadin.v7.shared.ui.progressindicator.ProgressIndicatorState; /** * A {@link ProgressBar} which polls the server for updates. * <p> * Polling in this way is generally not recommended since there is no * centralized management of when messages are sent to the server. Furthermore, * polling might not be needed at all if {@link PushConfiguration#setPushMode(PushMode)} or * {@link UI#setPollInterval(int)} is used. * * @author Vaadin Ltd. * @since 4 * @deprecated as of 7.1, use {@link com.vaadin.ui.ProgressBar} combined with * {@link PushConfiguration#setPushMode(PushMode)} or * {@link UI#setPollInterval(int)} instead. */ @Deprecated @SuppressWarnings("serial") public class ProgressIndicator extends ProgressBar { private ProgressIndicatorServerRpc rpc = new ProgressIndicatorServerRpc() { @Override public void poll() { // Nothing to do. } }; /** * Creates an a new ProgressIndicator. */ public ProgressIndicator() { this(0.0f); } /** * Creates a new instance of ProgressIndicator with given state. * * @param value */ public ProgressIndicator(float value) { super(value); registerRpc(rpc); } /** * Creates a new instance of ProgressIndicator with state read from the * given datasource. * * @param contentSource */ public ProgressIndicator(Property contentSource) { super(contentSource); registerRpc(rpc); } @Override protected ProgressIndicatorState getState() { return (ProgressIndicatorState) super.getState(); } @Override protected ProgressIndicatorState getState(boolean markAsDirty) { return (ProgressIndicatorState) super.getState(markAsDirty); } /** * Sets the interval that component checks for progress. * * @param pollingInterval * the interval in milliseconds. */ public void setPollingInterval(int pollingInterval) { getState().pollingInterval = pollingInterval; } /** * Gets the interval that component checks for progress. * * @return the interval in milliseconds. */ public int getPollingInterval() { return getState(false).pollingInterval; } }