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

com.googlecode.gwt.test.internal.handlers.AnimationSchedulerCreateHandler Maven / Gradle / Ivy

There is a newer version: 0.63
Show newest version
package com.googlecode.gwt.test.internal.handlers;

import com.google.gwt.animation.client.AnimationScheduler;
import com.googlecode.gwt.test.GwtCreateHandler;
import com.googlecode.gwt.test.utils.GwtReflectionUtils;

class AnimationSchedulerCreateHandler implements GwtCreateHandler {

    public Object create(Class classLiteral) throws Exception {
        if (!AnimationScheduler.class.equals(classLiteral)) {
            return null;
        }

        Class implClass = Class.forName("com.google.gwt.animation.client.AnimationSchedulerImplTimer");
        return GwtReflectionUtils.instantiateClass(implClass);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy