This is a nice and simple tool to give diagram of java class hierarchy. You can find the details http://plindenbaum.blogspot.com/2008/10/javadoc-is-not-enough-java2dia.html
Archive for June, 2009
Draw a graph for a java hierarchy using java2dot
June 13th, 2009 | by Ashok Chava | published in Java, Latest
How to make add-ons compatible with new versions of Firefox?
June 13th, 2009 | by Ashok Chava | published in Internet, Latest
There are many add-ons available for firefox and thunderbird, but most them are never updated according to the new versions of product releases. If you try to install them you will see version compatibility error. There is a simple way to resolve this compatibility issue. Download the add-on by clicking “save as” in browser context [...]
Tip #3:Using Firefox with multiple Profiles
June 13th, 2009 | by Ashok Chava | published in Internet, Latest
What is a profile? Its the place(folder) where firefox stores bookmarks, extensions,history etc. details. On windows OS the default location of profile folder is C:\Documents and Settings\xxxx\Application Data\Mozilla\Firefox\Profiles\k450b1oj.default.How to create a new profiles and managing them? Execute the command \\"firefox -P\\" which will show a dialog box to create and manage profiles. After creating profiles [...]
Tip #2:How to uninstall Windows Desktop Search?
June 13th, 2009 | by Ashok Chava | published in Computers, Latest
Yes, there is no direct option to uninstall windows desktop search, which is competitors for Google desktop search. I installed WDS with curiosity to know if there are any improvements over google’s desktop search, but to my disappointment its not that good. So I tried to uninstall to save some space and indexing cycles, but [...]
Tip #1:java.lang.StringBuilder
June 13th, 2009 | by Ashok Chava | published in Java, Latest
Sun introduced the StringBuilder class in J2SE 5.0, which is almost the same as StringBuffer, except it\\”s not thread-safe. Thread safety is usually not necessary with StringBuffer, since it is seldom shared between threads. When Strings are added using the + operator, the compiler in J2SE 5.0 and Java SE 6 will automatically use StringBuilder. [...]