How to add External Java Classes to GWT Project?

2012-04-27 Thread Danish
Hi im new in this some one Guide me... i create a java project import java.sql.DriverManager; public class DB_Conn { private java.sql.Connection con =

Re: How to add External Java Classes to GWT Project?

2012-04-27 Thread Alfredo Quiroga-Villamil
Danish: Your project out of the box was created by the plugin with a directory structure as follows: /client /shared /server The class you created will reside under the server package. Anything in the /client and /shared will eventually get compiled down to JS. So in your server you do all your

Re: How to add External Java Classes to GWT Project?

2012-04-27 Thread Gmane
On 4/27/2012 9:57 PM, Alfredo Quiroga-Villamil wrote: Danish: Your project out of the box was created by the plugin with a directory structure as follows: /client /shared /server The class you created will reside under the server package. Anything in the /client and /shared will eventually