Hi All,I am very new to GWT and was going through the initial tutorial for
creating a stock watcher application, I got stuck at a point where it was not
able to resolve the com.google.gwt.event.* imports. I could not find any
related topic through google aswell so thought i am missing something.
I am using eclipse and when i press ctrl-space on com.google.gwt. it shows
me all packages like http,dom, user etc but it doesn't have an option for
event.
CLASSPATH
I have installed my gwt on desktop and CLASSPATH has a path
C:\Documents and Settings\vijaygarg\Desktop\gwt-windows-1.5.3
The project directory is also present within gwt directory, so i think path
should not be a problem.
xml file:
<module>
<inherits name='com.google.gwt.user.User'/>
<inherits name='com.google.gwt.user.theme.standard.Standard'/>
<entry-point class='com.google.gwt.sample.test2.client.test2'/>
<stylesheet src='test2.css' />
</module>
test2.java file
package com.google.gwt.sample.test2.client;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.FlexTable;
import com.google.gwt.user.client.ui.HorizontalPanel;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.TextBox;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.google.gwt.event.dom.client.KeyCodes;
import com.google.gwt.event.dom.client.KeyPressEvent;
import com.google.gwt.event.dom.client.KeyPressHandler;
import com.google.gwt.user.client.Window;
import java.util.ArrayList;
public class test2 implements EntryPoint {
private VerticalPanel mainPanel = new VerticalPanel etc.
I would be thankful if anyone can help me out.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---