Futurescale, Inc. PureMVC Home

The PureMVC Framework Code at the Speed of Thought


Over 10 years of community discussion and knowledge are maintained here as a read-only archive.

New discussions should be taken up in issues on the appropriate projects at https://github.com/PureMVC

Show Posts

* | |

  Show Posts
Pages: [1]
1  PureMVC Manifold / MultiCore Version / Re: Using the PureMVC Java port with GWT? on: October 26, 2008, 03:34:35
I'm new to PureMVC and gwt, but I had trouble with the getSubCommandList() in the command Provider.  It worked as long as there was only one macro command registered, but when I went to add more, I had to change this to make it work correctly?  Is there another forum to discuss this kind of issue.  In case anyone else is having the same issue the change was  (I'm unsure of the actual cause):
:
//old: if(GWT.getTypeName(commandClass.getClass()).equals(GWT.getTypeName(StartupCommand.class.getClass()))) {
        if(commandClass.getName().equals(StartupCommand.class.getName())) {//new
Pages: [1]