SDK Updater: Fetch source XML, display them in tree.

There's a notion of an asynchronous task with a progress bar & status UI.
That's still just experimental. Will need some refactoring, etc.
This commit is contained in:
Raphael
2009-05-19 23:25:54 -07:00
parent cfa6808e6d
commit 08226b31f8
9 changed files with 1042 additions and 169 deletions

View File

@@ -110,7 +110,7 @@ public class TestSdkRepository extends TestCase {
/** Helper method that returns a validator for our XSD */
private Validator getValidator(CaptureErrorHandler handler) throws SAXException {
InputStream xsdStream = SdkRepositoryConstants.getXsdStream();
InputStream xsdStream = SdkRepository.getXsdStream();
SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
Schema schema = factory.newSchema(new StreamSource(xsdStream));
Validator validator = schema.newValidator();