List of usage examples for com.google.gwt.resources.rebind.context InlineClientBundleGenerator InlineClientBundleGenerator
InlineClientBundleGenerator
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; }