All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.asayama.gwt.angular.client.q.TimerProgress Maven / Gradle / Ivy

package com.asayama.gwt.angular.client.q;

import com.google.gwt.user.client.Timer;


public class TimerProgress extends Progress {

    protected final Timer timer;
    
    public TimerProgress(String message, Timer timer) {
        super(message);
        this.timer = timer;
    }
    
    @Override
    public void cancel() {
        timer.cancel();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy