Re: Can't generate class file from Interface

2008-08-26 Thread Gregor Schneider
On Tue, Aug 26, 2008 at 2:02 PM, sam wun <[EMAIL PROTECTED]> wrote: > > package command; > > Package command; > notice the difference? cheers gregor -- what's puzzlin' you, is the nature of my game gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2 gpgp-key available @ http://pgpkeys.pca.dfn.de:

RE: Can't generate class file from Interface

2008-08-26 Thread Martin Gainty
ct: Can't generate class file from Interface > To: users@tomcat.apache.org > > Hi, > > > > In Eclipse 3.4 (not sure about the previous version), I have a project, in > the src, there is a interface file called "DatabaseCommand.java". This file > is

Re: Can't generate class file from Interface

2008-08-26 Thread Johnny Kewl
- Original Message - From: "sam wun" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Tuesday, August 26, 2008 2:02 PM Subject: Can't generate class file from Interface Hi, In Eclipse 3.4 (not sure about the previous version), I have a project, i

Re: Can't generate class file from Interface

2008-08-26 Thread Ch Praveena
Hi, Make sure about all the classes like Customer, be accessable. And also be careful in naming the packages. 2008/8/26 sam wun <[EMAIL PROTECTED]> > Hi, > > > > In Eclipse 3.4 (not sure about the previous version), I have a project, in > the src, there is a interface file called "DatabaseC

[OT] RE: Can't generate class file from Interface

2008-08-26 Thread Peter Crowther
This is not a Tomcat question. Please find a more appropriate list. - Peter > -Original Message- > From: sam wun [mailto:[EMAIL PROTECTED] > Sent: 26 August 2008 13:03 > To: Tomcat Users List > Subject: Can't generate class file from Interface > &

Can't generate class file from Interface

2008-08-26 Thread sam wun
Hi, In Eclipse 3.4 (not sure about the previous version), I have a project, in the src, there is a interface file called "DatabaseCommand.java". This file is an interface file. It s content is shown below: package command; import java.sql.Connection; import java.sql.SQLException; public in