Example usage for com.google.gwt.resources.rebind.context InlineClientBundleGenerator InlineClientBundleGenerator

List of usage examples for com.google.gwt.resources.rebind.context InlineClientBundleGenerator InlineClientBundleGenerator

Introduction

In this page you can find the example usage for com.google.gwt.resources.rebind.context InlineClientBundleGenerator InlineClientBundleGenerator.

Prototype

InlineClientBundleGenerator

Source Link

Usage

From source file:org.parallax3d.parallax.platforms.gwt.generator.SourceBundleFactoryGenerator.java

License:Open Source License

private String generateStaticInstance(TypeOracle oracle, TreeLogger logger, GeneratorContext context,
        JClassType classtype) throws UnableToCompleteException {
    if (checkImplementedInterface(oracle, classtype.getImplementedInterfaces())) {
        String fullName = classtype.getQualifiedSourceName();

        InlineClientBundleGenerator gen = new InlineClientBundleGenerator();

        return gen.generate(logger, context, fullName);
    }/*w w w.j a v a2s  .c om*/

    return null;
}