Iam trying to generate javascript for an inner class.
My inner class is as shown
public final class common
{
public static final class ProtocolDocumentOperation
{
public static Builder newBuilder() { return
Builder.create(); }
}
}
=========
In my entry point class when I declare as shown it says
public ProtocolDocumentOperation.Builder buildProtocolWaveletDelta()
{
return ProtocolDocumentOperation.newBuilder();
}
Compile error gives
No source code is available for type
org.waveprotocol.wave.protocol.common.ProtocolDocumentOperation.Builder;
did you forget to inherit a required module?
Can someone tell how to use inner class in this scenario.?
regards,
krithi
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.