A yahoo group on java Gui testing
http://groups.yahoo.com/group/java-gui-testing/
It maybe useful, sometime later.
Hi ! Welcome to Chirag's Blog. I am serving here a bhelpuri of all the random stuff that I find interesting. In my bhel you may find jokes, cartoons, java related techincal notes/links, comments on events/people, thoughts about issues, rants and anything else that I can imagine.
http://groups.yahoo.com/group/java-gui-testing/
It maybe useful, sometime later.
How many of you always thought BATA is an Indian firm ?
read this and break the myth
Score - 98%
Much more than what I expected. Khuda meharbaan tau gadha pehalvaan :)
- Resources
Now its time to get serious about my SCJD assignment.
You are currently using 1 MB (0%) of your 1000000 MB.
This is the message I see on my Gmail inbox page. Yeah ok.. You can count the zeroes again.
Is this a mistake ?
or is this a masterstroke from Google. When I heard for the first time about this 1 GB mail service from Google, I thought, they could actually make it “unlimited space” since very few people will even use up 1GB. Moreover, if someone really wants to upload 10GB, then he will just open 10 different accounts.
Lets wait to get confirmation over this.
For reference:
http://sourceforge.net/projects/pdfcreator/
PDFCreator easily creates PDFs from any Windows program. It adds a printer to the list of printers.
http://www.geocities.com/chiragsdoshi/sample/build.xml
This is the build file I am using in Indigo Scheduler DVT. It uses the compile, jar , ftp and the telnet tasks.
Look at my previous post about the StaticMethodNullObjectConfusion class example where a null object is used to invoke a static class without causing a NullPointerException.
It is now that I completely understand how it works.
It works since the binding of which method to call for nullObj.someStaticMethod(); happens at compilation time and not at Runtime. That is why it does not matter that the value assigned to the nullObj is null.
It will be interesting to see the results of this class's compilation using some ByteCode viewer tool. When Jimmy has some time I will ask him to join me this.
The Java IAQ
Nice set of java questions here.
One that surprised :-O me:
public class StaticMethodNullObjectConfusion {
public static void someStaticMethod() {
System.out.println("someStaticMethod called");
}
public static void main(String args[]) {
StaticMethodNullObjectConfusion nullObj = null;
nullObj.someStaticMethod();
System.out.println("look maa!!, No NullPointerException");
}
}