Search Results

4
votes

Format Double as Fraction

How about org.apache.commons.math ? They have a Fraction class that takes a double. …
1
vote

How many multiple “Eclipse Projects” is considered too excessive for one actual development project?

Create jars for the projects you don't work in often. That should greatly reduce the clutter. If you work on all the projects often, then you can add targets to your build that will jar up the resp …
1
vote

junit & java : testing non-public methods

Here is the "probably shouldn't do it this way" method that everyone else keeps harping at you about. I think it's certainly within the realm of possibility that there are reasons for doing it this …
1
vote

What is object serialization?

Serialization is the process of converting an object's state to bits so that it can be stored on a hard drive. When you deserialize the same object, it will retain its state later. It lets you rec …
2
votes

Where are the class files located in JDK folder?

They are spread between several jars. It looks like Button is in jre/lib/rt.jar though. …