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

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

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

import com.google.web.bindery.autobean.shared.AutoBeanFactory;
import com.google.web.bindery.autobean.vm.AutoBeanFactorySource;
import com.googlecode.gwt.test.GwtCreateHandler;

public class AutoBeanCreateHandler implements GwtCreateHandler {

    @SuppressWarnings("unchecked")
    public Object create(Class classLiteral) throws Exception {
        if (AutoBeanFactory.class.isAssignableFrom(classLiteral)) {
            return AutoBeanFactorySource.create((Class) classLiteral);
        }

        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy