public interface

GwtCreateResource

implements ResourcePrototype
com.google.gwt.resources.client.GwtCreateResource<T>

Class Overview

This resource type allows any class that can be instantiated via a call to create(Class) to be used within an ClientBundle. Example uses include the I18N support classes, RPC endpoints, or any type that supports default instantiation. If no GwtCreateResource.ClassType annotation is present on the resource accessor method, the type parameter T will be used as the class literal passed to GWT.create().

Summary

Nested Classes
@interface GwtCreateResource.ClassType This annotation can be applied to the resource getter method in order to call GWT.create with a class literal other than that of the return type parameterization. 
Public Methods
abstract T create()
Invokes GWT.create().
[Expand]
Inherited Methods
From interface com.google.gwt.resources.client.ResourcePrototype

Public Methods

public abstract T create ()

Invokes GWT.create(). Multiple invocations of this method will return different instances of the T type.