Mercurial > mxd2map
changeset 24:c0060abb7457
Added source directory and an initial entry class for a MXD converter tool.
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 04 Apr 2011 20:01:25 +0200 |
parents | e9c10558ee6d |
children | cbd67b1100d8 |
files | ChangeLog src/java/de/intevation/mxd/Converter.java |
diffstat | 2 files changed, 20 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Mar 07 14:47:30 2011 +0100 +++ b/ChangeLog Mon Apr 04 20:01:25 2011 +0200 @@ -1,3 +1,8 @@ +2011-04-04 Ingo Weinzierl <ingo@intevation.de> + + * src/java/de/intevation/mxd/Converter.java: + New. This class represents the entry point of the mxd converter tool. + 2011-03-07 Bjoern Schilberg <bjoern.schilberg@intevation.de> * M mapserver/mapfile/mapfile_header.include:
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/java/de/intevation/mxd/Converter.java Mon Apr 04 20:01:25 2011 +0200 @@ -0,0 +1,15 @@ +package de.intevation.mxd; + + +/** + * The entry point of the MXD converter tool. + * + * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> + */ +public class Converter { + + public static void main(String[] args) { + // TODO FILL ME + } +} +// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :