r2192 - trunk/jaxx-compiler/src/main/java/jaxx/compiler/decorators
Author: tchemit Date: 2011-02-02 13:12:34 +0100 (Wed, 02 Feb 2011) New Revision: 2192 Url: http://nuiton.org/repositories/revision/jaxx/2192 Log: fix generated import Modified: trunk/jaxx-compiler/src/main/java/jaxx/compiler/decorators/HelpRootCompiledObjectDecorator.java Modified: trunk/jaxx-compiler/src/main/java/jaxx/compiler/decorators/HelpRootCompiledObjectDecorator.java =================================================================== --- trunk/jaxx-compiler/src/main/java/jaxx/compiler/decorators/HelpRootCompiledObjectDecorator.java 2011-02-02 12:10:40 UTC (rev 2191) +++ trunk/jaxx-compiler/src/main/java/jaxx/compiler/decorators/HelpRootCompiledObjectDecorator.java 2011-02-02 12:12:34 UTC (rev 2192) @@ -162,7 +162,8 @@ // } if (buffer.length() > 0) { - StringBuilder extraCode = new StringBuilder(helpBrokerFQN); + String type = compiler.getImportManager().getType(helpBrokerFQN); + StringBuilder extraCode = new StringBuilder(type); extraCode.append(" _broker = getBroker();"); buffer.append(eol).append("_broker.prepareUI(this);");
participants (1)
-
tchemit@users.nuiton.org