meir1274 / xjcpluginjavaapiforkml

XJC Plugin to generate the Java API for KML.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

XJC Plugin to generate the Java API for KML

The Java API for KML (JAK) is automatically generated by OGC’s KML schema specification file ogckml22.xsd and Google’s Gx extensions file kml22gx.xsd. Every time the KML schema evolves, an build cycle is initiated and JAK reflects all changes automatically.

The high level documentation found at Micromata Labs Implementation explains what it takes to create the Java API for KML. It is not essential in understanding the usage of the Java API for KML. The build cycle is explained and the implementation details are shown. Every time the KML schema evolves, the build cycle is initiated and JAK reflects all changes automatically. It is about the implementation details, why things were done as they are, and how this JAXB plugin does all the automatic API creation.

The Java API for KML can be found here: http://labs.micromata.de/projects/jak.html

The current JARs can be obtained via Maven or at the Download page:

<dependencies>
    ...
   <!-- The XJC Plugin -->
   <!-- It is able to create the API (only needed if OGC's KML schema changes) -->
   <dependency>
      <groupId>de.micromata.jak</groupId>
      <artifactId>XJCPluginJavaApiforKml</artifactId>
      <version>1.0.1-SNAPSHOT</version>
   </dependency>
    ...
</dependencies>
<repositories>
    ...
   <repository>
      <id>maven2-repository.dev.java.net</id>
      <name>Java.net Maven 2 Repository</name>
      <url>http://download.java.net/maven/2</url>
      <layout>default</layout>
      <snapshots>
         <enabled>true</enabled>
      </snapshots>
   </repository>
</repositories>

The xjcpluginjavaapiforkml is released under a BSD license.

About

XJC Plugin to generate the Java API for KML.

License:Other


Languages

Language:HTML 77.7%Language:Java 21.5%Language:Perl 0.8%