Package com.google.gwt.core.server
Class ObjectNew
- java.lang.Object
-
- com.google.gwt.core.server.ServerGwtBridge.ClassInstantiatorBase
-
- com.google.gwt.core.server.ObjectNew
-
- All Implemented Interfaces:
ServerGwtBridge.ClassInstantiator
final class ObjectNew extends ServerGwtBridge.ClassInstantiatorBase
A class instantiator that simple news the requested class. Used as a last resort.
-
-
Constructor Summary
Constructors Constructor Description ObjectNew()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
create(java.lang.Class<?> clazz, ServerGwtBridge.Properties properties)
Create an instance given a base class.-
Methods inherited from class com.google.gwt.core.server.ServerGwtBridge.ClassInstantiatorBase
tryCreate, tryCreate
-
-
-
-
Method Detail
-
create
public <T> T create(java.lang.Class<?> clazz, ServerGwtBridge.Properties properties)
Description copied from interface:ServerGwtBridge.ClassInstantiator
Create an instance given a base class. The created class may be a subtype of the requested class.- Returns:
- instance or null if unable to create
-
-