This is the mail archive of the
java-discuss@sourceware.cygnus.com
mailing list for the Java project.
RE: jc1 segfaults compiling volano
- To: aph@pasanda.cygnus.co.uk
- Subject: RE: jc1 segfaults compiling volano
- From: MAckroyd@iclretail.icl.com
- Date: Tue, 22 Jun 1999 10:50:50 +0100
- Cc: java-discuss@sourceware.cygnus.com
>
> package COM.volano;
>
> public class NTService
> {
> public static void \u01ad (String a, String b) {}
> public boolean handleStop() {return true;}
> public boolean handleShutdown() {return true;}
> }
If this is the stub for the NTService class file?
why is it looking for the com.ms.service.Service?
> COM/volano/NTService.java:0: Cannot find file for class
> com.ms.service.Service.
> COM/volano/NTService.java:0: Cannot find file for class
> com.ms.service.Service.
These are classes within a package to provide all the NT service crap. But
this stub code doesn`t extend it?..
import com.ms.service.*;
public class NTService extends Service
Is this right?
Mark