Re: Nice article discussing optional dependencies

2012-08-08 Thread Wayne Fay
> any idea where his background jpg was shot? It changes every time you refresh the page. The author also tweeted "My blog background picture will now change regularly and draw from the tens of thousands of photos from my trips to 63 countries so far." So I'm afraid you'd have to ask him directly

RE: Nice article discussing optional dependencies

2012-08-08 Thread Martin Gainty
Thanks Ron this is what i got from the article public static boolean isPresent(String className) {try { Class.forName(className);return true;} catch (Throwable ex) { // Class or one of its dependencies is not present...return false; }} plugin devs have