Skip to content

{ Category Archives } Shared Source

The Code Suppository Repository

While doing some research today, I stumbled across John Ratcliff’s Code Suppository blog. Lots of interesting and useful code to be found there. He has compiled links to the latest versions of everything in his Code Suppository Source Collection. Much of the code is graphics related, or useful for graphics and game programming. You may […]

Java Source: Updated ClassUtils.java

In a recent project I was working on I ran into a couple of wrinkles with my ClassUtils class. The first problem was regarding the specialized instantiation methods, those that instantiate a class only if it extends a specific superclass or implements a specific interface. Because I opted to return null from these methods on […]

Java Source: ClassUtils.java

In my last post I mentioned that I would be sharing a useful utility class. This class is something I have implemented many times for different projects. Recently, while building up a library that I will be using in the near future, I implemented it for the umpteenth time. It struck me as a good […]