This projects provides Mil 2525b symbols. In Java its quite easy to register additional URL Handlers, and thats the way how it works:
In the Class where the static main method exists add the follwing lines:
static {
URL.setURLStreamHandlerFactory(new Mil2525bHandlerFactory());
}
Done.
To access Images just use URL’s like this:
URL url = new URL
url.openStream();
An easy way to handle images use ImageIO:
BufferedImage image = ImageIO.read(new URL);
Symbols are taken from the openmap project, please consult the License file at
http://openmap.bbn.com/cgi-bin/viewvc.cgi/trunk/LICENSE?root=openmap&view=log
To make an Eclipse-Project just type
mvn eclipse:eclipse
Import the project in Eclipse: `File→Import→Existing Projects into Workspace`. Done.