Hi,

I was following Solution #6 (Drag and Drop) example from the book "Google
Web Toolkit Solutions: More Cool & Useful Stuff". I used Intellij 7 with GWT
1.5 to compile the example but failed with the errors reported.

I tried a few things unsuccessfully and finally I removed the line <inherits
name='com.gwtsolutions.components.client.ui.Dnd'/> from
/com/gwtsolutions/DragAndDrop.gwt.xml (included below) and everything went
smoothly. My question is, should this line be there since we already
inherited Components with this directive <inherits
name='com.gwtsolutions.components.Components'/> in the previous line? Both
com.gwtsolutions.components.client.ui.Dnd and
com.gwtsolutions.components.Components are in the same module where
Dnd.gwt.xml is 2 level down drom Components.gwt.xml. Is it possible to have
2 gwt.xml files in 1 module?

Thanks

/lim/

<!-- /com/gwtsolutions/DragAndDrop.gwt.xml -->
<module>

        <!-- Inherit the core Web Toolkit stuff.                  -->
        <inherits name='com.google.gwt.user.User'/>
    <inherits name="com.google.gwt.i18n.I18N"/>
    <inherits name='com.gwtsolutions.components.Components'/>
<inherits name='com.gwtsolutions.components.client.ui.Dnd'/> <!--
problematic line -->

        <stylesheet src="css/styles.css"/>

        <!-- Specify the app entry point class.                   -->
        <entry-point class='com.gwtsolutions.client.DragAndDrop'/>

</module>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to