[java programming] Java SE 5 Language Feature Enhancements Homework

2010-02-24 Thread Ovidiu Bivolaru
Hi, Which rules should apply to calculate winning team using score and extra points ? Thanks! Regards, Ovidiu -- To post to this group, send email to javaprogrammingwithpassion@googlegroups.com To unsubscribe from this group, send email to javaprogrammingwithpassion+unsubscr...@googlegroups.c

[java programming] Compiling for older version problem

2010-02-24 Thread Rory O'Conor
I would be grateful for any assistance. My issue is that I have written a program using JAVA platform JDK 1.6 (and NetBeans 6.8). I now find that it will not run on many of the corporate computers where I would like it to run because they run Windows XP and JAVA v 1.4. My best option is to

Re: [java programming] How to pay for courses?

2010-02-24 Thread Sang Shin
On 2/24/2010 7:08 AM, kengriffin wrote: How do I pay for the courses? One course starts on Monday. I would like to make sure that I am properly enrolled and my fees are paid. Thank you, Kenneth Griffin We are still in the testing stage of conversion. We are going to start the course o

[java programming] How to pay for courses?

2010-02-24 Thread kengriffin
How do I pay for the courses? One course starts on Monday. I would like to make sure that I am properly enrolled and my fees are paid. Thank you, Kenneth Griffin -- To post to this group, send email to javaprogrammingwithpassion@googlegroups.com To unsubscribe from this group, send email to ja

[java programming] Re: regarding interface

2010-02-24 Thread Andreea
Yes, a final class can implement an interface. You just have to make sure it implements all the methods in your interface, due to the fact that a final class cannot be declared as abstract. On Feb 24, 8:45 am, Tikeswar Mohanty wrote: > Can a final class implement an interface? -- To post to thi

Re: [java programming] regarding interface

2010-02-24 Thread Ankit Anurag
hi all !! well i guess, obviously a final class can implement an interface because a final class means that it can not be extended or its methods & variables can not be inherited.That is all. It has no issues with implementing interfaces. Interfaces are nothing but 100% pure abstract classes any w

Re: [java programming] regarding interface

2010-02-24 Thread Dainis Brjuhoveckis
TestFinal.java: // interface TestInterface {} public final class TestFinal implements TestInterface {} //--- javac FinalTest.java It wasn't very hard to check, was it? ;) On Wed, Feb 24, 2010 at 8:45 AM, Tikeswa

Re: [java programming] regarding interface

2010-02-24 Thread Dainis Brjuhoveckis
Sorry, correct command is javac TestFinal.java On Wed, Feb 24, 2010 at 11:27 AM, Dainis Brjuhoveckis < dainis.brjuhovec...@gmail.com> wrote: > TestFinal.java: > // > interface TestInterface {} > > public final class TestFinal implements TestInterface {}