parse .xsd file as API

This program generates Java code for a .xsd file.
If you execute 'm -j xsdc', then 'xsdc.jar' file will be created.
You can use this .jar file like this:
$ java -jar xsdc.jar $xsd_file_path $package_name $directory_name
Then it generates Java code under $directory_name.

Bug: 80453829
Test: If you want to execute unit test, execute 'm -j xsdc-tests'.
It will generate xsdc-tests.jar, and you can use it by
$ java -cp xsdc-tests.jar org.junit.runner.JUnitCore
com.android.xsdc.tests.XmlParserTest

Change-Id: Ica6432e4fc6497f8a14619fd34227702e53bfa57
diff --git a/MANIFEST.MF b/MANIFEST.MF
new file mode 100644
index 0000000..76391f5
--- /dev/null
+++ b/MANIFEST.MF
@@ -0,0 +1,3 @@
+Manifest-Version: 1.0

+Main-Class: com.android.xsdc.Main

+