Archive for the ‘Java Basic Concepts’ Category




Java – Validating XML Against Multiple XSDs

Friday, January 14th, 2011

Anyone can help me on how to validate XML against multiple XSDs? One XSD (for example order.xsd) includes another xsd (for example order2.xsd). And these two XSDs are used to validate an XML (for example order.xml).

Any help will be greatly appreciated.

Thank you very much!

Java 6 – final Class

Tuesday, April 13th, 2010

When you declare a class as final, it means that it can’t be subclassed or any method of that class can’t be overridden.