[Schmitzm-commits] r1273 - in trunk/src: schmitzm/geotools/feature schmitzm/geotools/gui schmitzm/geotools/gui/resource/locales schmitzm/geotools/io schmitzm/geotools/map/event schmitzm/geotools/styling schmitzm/io schmitzm/swing skrueger skrueger/geotools skrueger/i8n skrueger/swing

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Mon Nov 15 17:22:50 CET 2010


Author: alfonx
Date: 2010-11-15 17:22:47 +0100 (Mon, 15 Nov 2010)
New Revision: 1273

Modified:
   trunk/src/schmitzm/geotools/feature/FeatureUtil.java
   trunk/src/schmitzm/geotools/gui/FeatureLayerFilterDialog.java
   trunk/src/schmitzm/geotools/gui/GeoMapPane.java
   trunk/src/schmitzm/geotools/gui/GridPanel.java
   trunk/src/schmitzm/geotools/gui/MapPaneStatusBar.java
   trunk/src/schmitzm/geotools/gui/ScalePane.java
   trunk/src/schmitzm/geotools/gui/SelectableXMapPane.java
   trunk/src/schmitzm/geotools/gui/XMapPane.java
   trunk/src/schmitzm/geotools/gui/resource/locales/GTResourceBundle.properties
   trunk/src/schmitzm/geotools/io/GeoImportUtil.java
   trunk/src/schmitzm/geotools/map/event/GridCoverageValueSelectedEvent.java
   trunk/src/schmitzm/geotools/styling/StylingUtil.java
   trunk/src/schmitzm/io/IOUtil.java
   trunk/src/schmitzm/swing/SwingUtil.java
   trunk/src/skrueger/AttributeMetadataImpl.java
   trunk/src/skrueger/RasterLegendData.java
   trunk/src/skrueger/geotools/LegendIconFeatureRenderer.java
   trunk/src/skrueger/geotools/MapContextManagerInterface.java
   trunk/src/skrueger/geotools/MapPaneToolBar.java
   trunk/src/skrueger/geotools/StyledFS.java
   trunk/src/skrueger/geotools/StyledGridCoverageInterface.java
   trunk/src/skrueger/geotools/StyledLayerUtil.java
   trunk/src/skrueger/geotools/StyledRasterInterface.java
   trunk/src/skrueger/geotools/ZoomRestrictableGridInterface.java
   trunk/src/skrueger/i8n/Translation.java
   trunk/src/skrueger/swing/ColorButton.java
   trunk/src/skrueger/swing/OkButton.java
Log:
Change email address

Modified: trunk/src/schmitzm/geotools/feature/FeatureUtil.java
===================================================================
--- trunk/src/schmitzm/geotools/feature/FeatureUtil.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/feature/FeatureUtil.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -131,7 +131,7 @@
  * 
  * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
  *         (University of Bonn/Germany)
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  * @version 1.1
  */
 public class FeatureUtil {
@@ -1844,7 +1844,7 @@
 	 * 
 	 * @param geomType
 	 *            LineString.class, Point.class or Polygon.class from com.jts...
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 
 	public static SimpleFeatureType createFeatureType(final Class<?> geomType) {
@@ -1858,7 +1858,7 @@
 	 * @param geomType
 	 *            LineString.class, Point.class or Polygon.class from com.jts...
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static SimpleFeatureType createFeatureType(final Class<?> geomType,
 			CoordinateReferenceSystem crs) {
@@ -2839,7 +2839,7 @@
 	 * 
 	 * @param featureSource
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Vector<String> getValueFieldNames(
 			final FeatureSource<SimpleFeatureType, SimpleFeature> featureSource,
@@ -2861,7 +2861,7 @@
 	 * @return A {@link List} of {@link String}s representing VALUE field, e.g.
 	 *         fields that are not of any geometry or complex type.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Vector<String> getValueFieldNames(
 			final SimpleFeatureType featureType, final boolean empty,

Modified: trunk/src/schmitzm/geotools/gui/FeatureLayerFilterDialog.java
===================================================================
--- trunk/src/schmitzm/geotools/gui/FeatureLayerFilterDialog.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/gui/FeatureLayerFilterDialog.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -165,7 +165,7 @@
 	 * 
 	 *                CHANGE BY SK: Takes {@link Window} instead of
 	 *                {@link Frame}
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public FeatureLayerFilterDialog(Window parent, SelectableXMapPane mapPane,
 			MapLayer mapLayer, boolean geomPrev) {

Modified: trunk/src/schmitzm/geotools/gui/GeoMapPane.java
===================================================================
--- trunk/src/schmitzm/geotools/gui/GeoMapPane.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/gui/GeoMapPane.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -366,7 +366,7 @@
 	 * @return If dispose() has been called. If
 	 *         <code>true<(code>, further use of this {@link GeoMapPane} is undefined
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons
 	 *         Tzeggai</a>
 	 */
 	public boolean isDisposed() {
@@ -377,7 +377,7 @@
 	 * Should be called when the {@link GeoMapPane} is not needed no more to
 	 * help the GarbageCollector
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons
 	 *         Tzeggai</a>
 	 */
 	public void dispose() {
@@ -397,7 +397,7 @@
 	 * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot gemacht
 	 * wird) wird. Dann werden wird der Hintergrund auf WEISS gesetzt.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons
 	 *         Tzeggai</a>
 	 */
 	@Override

Modified: trunk/src/schmitzm/geotools/gui/GridPanel.java
===================================================================
--- trunk/src/schmitzm/geotools/gui/GridPanel.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/gui/GridPanel.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -432,7 +432,7 @@
    * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot gemacht wird) wird. Dann werden wird der
    * Hintergrund auf WEISS gesetzt.
    *
-   * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons
+   * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons
    *         Tzeggai</a>
    */
   @Override

Modified: trunk/src/schmitzm/geotools/gui/MapPaneStatusBar.java
===================================================================
--- trunk/src/schmitzm/geotools/gui/MapPaneStatusBar.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/gui/MapPaneStatusBar.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -111,7 +111,7 @@
 	 * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot gemacht
 	 * wird) wird. Dann werden wird der Hintergrund auf WEISS gesetzt.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	@Override
 	public void print(Graphics g) {

Modified: trunk/src/schmitzm/geotools/gui/ScalePane.java
===================================================================
--- trunk/src/schmitzm/geotools/gui/ScalePane.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/gui/ScalePane.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -144,7 +144,7 @@
 	 * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot gemacht
 	 * wird) wird. Diese Angabe macht kaum sinn wenn gedruckt wird, oder?!
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons
 	 *         Tzeggai</a>
 	 */
 	@Override

Modified: trunk/src/schmitzm/geotools/gui/SelectableXMapPane.java
===================================================================
--- trunk/src/schmitzm/geotools/gui/SelectableXMapPane.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/gui/SelectableXMapPane.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -471,7 +471,7 @@
 	 * 
 	 * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
 	 *         (University of Bonn/Germany)
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	protected Hashtable<MapLayer, double[]> findGridCoverageValues(
 			Point2D point, int mode) {
@@ -598,7 +598,7 @@
 	 * 
 	 * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
 	 *         (University of Bonn/Germany)
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public boolean findGridCoverageValuesAndFireEvents(Point2D point, int mode) {
 		Hashtable<MapLayer, double[]> result = findGridCoverageValues(point,
@@ -925,7 +925,7 @@
 	 * 
 	 * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
 	 *         (University of Bonn/Germany)
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	@Override
 	public boolean setMapArea(ReferencedEnvelope newMapArea) {

Modified: trunk/src/schmitzm/geotools/gui/XMapPane.java
===================================================================
--- trunk/src/schmitzm/geotools/gui/XMapPane.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/gui/XMapPane.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -835,7 +835,7 @@
 	 * BBOX of 0 width and height can result froma point layer with just one
 	 * point and will later crash the WIndowsToMapTransformation)
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public ReferencedEnvelope bestAllowedMapArea(ReferencedEnvelope env) {
 
@@ -1039,7 +1039,7 @@
 	 * 
 	 * Removes all {@link JMapPaneListener}s that are registered
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public void dispose() {
 		if (isDisposed())
@@ -1423,7 +1423,7 @@
 	 * Retuns the maximum allowed zoom scale. This is the smaller number value
 	 * of the two. Defaults to {@link Double}.MIN_VALUE
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public Double getMaxZoomScale() {
 		return maxZoomScale;
@@ -1433,7 +1433,7 @@
 	 * Retuns the minimum allowed zoom scale. This is the bigger number value of
 	 * the two. Defaults to {@link Double}.MAX_VALUE
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public Double getMinZoomScale() {
 		return minZoomScale;
@@ -2131,7 +2131,7 @@
 	 * used which mean there is no restriction.
 	 * 
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public void setMinZoomScale(final Double minZoomScale) {
 		this.minZoomScale = minZoomScale == null ? Double.MAX_VALUE
@@ -2794,7 +2794,7 @@
 	 *            Index of the {@link MapLayer} in the {@link MapContext} (from
 	 *            back to top)
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public void zoomToLayer(int index, boolean switchCrs) {
 		final MapContext context = getMapContext();
@@ -2816,7 +2816,7 @@
 	 *            Reverse index of the {@link MapLayer} in the
 	 *            {@link MapContext}
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public void zoomToLayerIdxReverse(int index, boolean switchCrs) {
 		zoomToLayer(getMapContext().getLayerCount() - 1 - index, switchCrs);
@@ -2827,7 +2827,7 @@
 	 * {@link SelectableXMapPane}. AntiALiasing ist besonders fuer
 	 * Textbeschriftung sehr schoen, verbraucht aber auch mehr Performance.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public void setAntiAliasing(final boolean aa) {
 		// LOGGER.info("Setting AntiAliasing for this JMapPane to " + aa);

Modified: trunk/src/schmitzm/geotools/gui/resource/locales/GTResourceBundle.properties
===================================================================
--- trunk/src/schmitzm/geotools/gui/resource/locales/GTResourceBundle.properties	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/gui/resource/locales/GTResourceBundle.properties	2010-11-15 16:22:47 UTC (rev 1273)
@@ -189,4 +189,4 @@
 AtlasFeatureLayerFilterDialog.AttributeTableHeader.Name = Name
 AtlasFeatureLayerFilterDialog.AttributeTableHeader.Unit = Unit
 AtlasFeatureLayerFilterDialog.WindowTitle = Filter by attribute: ${0}
-FilterTableCellEditor.FilterDialogTitle = Filter for ${0} (${1}), ${2}
\ No newline at end of file
+FilterTableCellEditor.FilterDialogTitle = Filter for ${0} (${1}), ${2}

Modified: trunk/src/schmitzm/geotools/io/GeoImportUtil.java
===================================================================
--- trunk/src/schmitzm/geotools/io/GeoImportUtil.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/io/GeoImportUtil.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -291,7 +291,7 @@
 	 * wird die Endung der URL gegen .prj und .PRJ gewechselt und nochmal
 	 * versucht bevor das {@link #DEFAULT_CRS} benutzt wird.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static CoordinateReferenceSystem determineProjection(URL prjUrl) {
 		CoordinateReferenceSystem crs = null;
@@ -386,7 +386,7 @@
 	 *            URL to shape file
 	 * @param prjURL
 	 *            URL to projection file
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * @throws IOException
 	 *             if an error occur
 	 */
@@ -530,7 +530,7 @@
 	 *            <code>null</code> sein.
 	 * 
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * 
 	 * @return {@link FeatureCollection} that was read
 	 * 
@@ -891,7 +891,7 @@
 	 * 
 	 * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
 	 *         (University of Bonn/Germany)
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * 
 	 * @param readParams
 	 *            May be {@link NullPointerException}. Otherwise an array of
@@ -1000,7 +1000,7 @@
 	 * 
 	 * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
 	 *         (University of Bonn/Germany)
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static GridCoverage2D readGridFromImage(URL url,
 			CoordinateReferenceSystem crs) throws IOException {
@@ -1279,7 +1279,7 @@
 	 * 
 	 * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
 	 *         (University of Bonn/Germany)
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * @throws IOException
 	 *             falls die URL nicht wie erwartet gelesen werden konnte.
 	 */
@@ -1337,7 +1337,7 @@
 	 * 
 	 * @return Leerstring, wenn url == null
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static String readProjectionString(URL url) throws IOException {
 		if (url == null) {
@@ -1435,7 +1435,7 @@
 	 * 
 	 * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
 	 *         (University of Bonn/Germany)
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static double[] readWorldFile(InputStream inputStream)
 			throws IOException {

Modified: trunk/src/schmitzm/geotools/map/event/GridCoverageValueSelectedEvent.java
===================================================================
--- trunk/src/schmitzm/geotools/map/event/GridCoverageValueSelectedEvent.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/map/event/GridCoverageValueSelectedEvent.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -50,7 +50,7 @@
  * Double auf ObjectSelectionEvent double[] geaendert. Die laenge des double array
  * entspricht der Anzahl der Baender.
  *
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  *
  * @version 1.1
  *

Modified: trunk/src/schmitzm/geotools/styling/StylingUtil.java
===================================================================
--- trunk/src/schmitzm/geotools/styling/StylingUtil.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/geotools/styling/StylingUtil.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -156,7 +156,7 @@
  * 
  * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
  *         (University of Bonn/Germany)
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  * 
  * @version 1.1
  */
@@ -295,7 +295,7 @@
 	 * Removes all label information from the {@link ColorMapEntry}s of the
 	 * given {@link ColorMap}
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static ColorMap clearColorMapLabels(ColorMap colorMap) {
 		for (ColorMapEntry cme : colorMap.getColorMapEntries()) {
@@ -309,7 +309,7 @@
 	 * 
 	 * @param graphicFill
 	 * @return
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Graphic clone(Graphic graphic) {
 		DuplicatingStyleVisitor duplicatingStyleVisitor = new DuplicatingStyleVisitor();
@@ -479,7 +479,7 @@
 	 * @param to
 	 *            {@link TextSymbolizer} target. May not be <code>null</code>.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void copyAllValues(final TextSymbolizer from,
 			final TextSymbolizer to) {
@@ -1282,7 +1282,7 @@
 	 *         colormap was provided.
 	 * 
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Style createStyleFromColorMap(ColorMap colorMap, String name) {
 		return createStyleFromColorMap(colorMap, name, null);
@@ -1307,7 +1307,7 @@
 	 * @return Always a {@link Style} that you can be applyed to a
 	 *         {@link GridCoverage}.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Style createStyleFromColorMap(ColorMap colorMap, String name,
 			String title) {
@@ -1504,7 +1504,7 @@
 	 *         sichtbaren regeln raussuchen, und dann direkt am anfang damitmit
 	 *         mitfiltern...
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static MemoryFeatureCollection filterSLDVisibleOnly(
 			final FeatureCollection<SimpleFeatureType, SimpleFeature> fc,
@@ -1653,7 +1653,7 @@
 	 *         sind, welche bei aktuellen Scale mit dem übergebenen Style
 	 *         gerendert werden.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static FeatureCollection<SimpleFeatureType, SimpleFeature> filterSLDVisibleOnly(
 			final FeatureCollection<SimpleFeatureType, SimpleFeature> fc,
@@ -1802,7 +1802,7 @@
 	/**
 	 * @return the first {@link Color} used in a {@link Fill}.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Color getFillColor(Fill fill) {
 		if (fill == null)
@@ -1890,7 +1890,7 @@
 	 * @param graphic
 	 *            If <code>null</code> returns <code>null</code>
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Color getGraphicColor(Graphic graphic) {
 		if (graphic == null)
@@ -1918,7 +1918,7 @@
 	/**
 	 * @return the first {@link Color} used in a {@link LineSymbolizer}.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Color getLineSymbolizerColor(LineSymbolizer ps) {
 		if (ps == null)
@@ -2027,7 +2027,7 @@
 	/**
 	 * @return the first {@link Color} used in a {@link PointSymbolizer}.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Color getPointSymbolizerColor(PointSymbolizer ps) {
 		if (ps == null)
@@ -2039,7 +2039,7 @@
 	/**
 	 * @return the first {@link Color} used in a {@link PolygonSymbolizer}.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Color getPolygonSymbolizerColor(PolygonSymbolizer ps) {
 		if (ps == null)
@@ -2193,7 +2193,7 @@
 	/**
 	 * @return the first {@link Color} used in a {@link Stroke}.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Color getStrokeColor(Stroke stroke) {
 		if (stroke == null)
@@ -2258,7 +2258,7 @@
 	/**
 	 * @return the first {@link Color} used in a {@link Symbolizer}.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Color getSymbolizerColor(Symbolizer symb) {
 		if (symb == null)
@@ -2531,7 +2531,7 @@
 	 * 
 	 * @return An {@link Array} of {@link Style}s, can be length==0
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Style[] loadSLD(File sldFile) throws FileNotFoundException {
 
@@ -2554,7 +2554,7 @@
 	 * @return An {@link Array} of {@link Style}s, can be length==0. null if
 	 *         file not exists
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Style[] loadSLD(InputStream inputStream) {
 
@@ -2582,7 +2582,7 @@
 	 * @return An {@link Array} of {@link Style}s, can be length==0 if no
 	 *         UserStyles in SLD file. null if file not exists
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static Style[] loadSLD(URL url) {
 		InputStream openStream = null;
@@ -2810,7 +2810,7 @@
 	/**
 	 * Replaces the "main" color in a given {@link Graphic} element
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void replaceGraphicColor(Graphic graphic, Color oldColor,
 			Color newColor) {
@@ -2833,7 +2833,7 @@
 	/**
 	 * Replaces the "main" color in a given {@link LineSymbolizer} element
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void replaceLineSymbolizerColor(LineSymbolizer ps,
 			Color oldColor, Color newColor) {
@@ -2846,7 +2846,7 @@
 	/**
 	 * Replaces the "main" color in a given {@link PointSymbolizer} element
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void replacePointSymbolizerColor(PointSymbolizer ps,
 			Color oldColor, Color newColor) {
@@ -2861,7 +2861,7 @@
 	 * 
 	 * @param oldColor
 	 * @param newColor
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * @param ps
 	 */
 	public static void replacePolygonSymbolizerColor(PolygonSymbolizer ps,
@@ -2896,7 +2896,7 @@
 	/**
 	 * Replaces the "main" color in a given {@link Symbolizer} element
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void replaceSymbolizerColor(Symbolizer symb, Color oldColor,
 			Color newColor) {
@@ -2933,7 +2933,7 @@
 	 *            {@link Style} to save. Any selectino related FeatureTypeStyle
 	 *            will be removed.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * 
 	 * @return <code>true</code> if the file was really written.
 	 *         <code>false</code> means, that the existing file already
@@ -3004,7 +3004,7 @@
 	 *            {@link Style} to save. Any selectino related FeatureTypeStyle
 	 *            will be removed.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * @throws TransformerException
 	 */
 	public static final void saveStyleToSLD(Style style,

Modified: trunk/src/schmitzm/io/IOUtil.java
===================================================================
--- trunk/src/schmitzm/io/IOUtil.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/io/IOUtil.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -29,6 +29,8 @@
  ******************************************************************************/
 package schmitzm.io;
 
+import java.io.BufferedInputStream;
+import java.io.BufferedOutputStream;
 import java.io.BufferedReader;
 import java.io.File;
 import java.io.FileFilter;
@@ -47,10 +49,14 @@
 import java.net.URL;
 import java.nio.channels.FileChannel;
 import java.nio.charset.Charset;
+import java.util.Enumeration;
 import java.util.zip.ZipEntry;
+import java.util.zip.ZipException;
+import java.util.zip.ZipFile;
 import java.util.zip.ZipOutputStream;
 
 import org.apache.commons.io.FileUtils;
+import org.apache.commons.io.IOUtils;
 import org.apache.commons.lang.SystemUtils;
 import org.apache.log4j.Logger;
 import org.geotools.data.DataUtilities;
@@ -222,7 +228,7 @@
 	 * 
 	 * @return A new {@link URL} with new extension.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * 
 	 */
 	public static URL changeUrlExt(final URL url, final String postfix)
@@ -246,7 +252,7 @@
 	 * zusammengesetzt. Falls eine Verkuerzung nicht moeglich ist, wird eine
 	 * {@link MalformedURLException} geworfen
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * 
 	 * 
 	 */
@@ -372,41 +378,53 @@
 		// Sonst: BaseDir als Basis fuer Source verwenden
 		return new File(baseDir, path);
 	}
-	
+
 	/**
-	 * Creates a {@link Writer} to write to file with a special
-	 * encoding.
-	 * @param file output file
-	 * @param append indicated whether an existing file will be extended
-	 * @param charsetName name of the encoding char set
-	 * @throws FileNotFoundException if the file exists but is a directory rather than a regular file,
-	 *         does not exist but cannot be created, or cannot be opened for any other reason 
-	 * @throws UnsupportedEncodingException if the named encoding is not supported
-	 * @see Charset 
+	 * Creates a {@link Writer} to write to file with a special encoding.
+	 * 
+	 * @param file
+	 *            output file
+	 * @param append
+	 *            indicated whether an existing file will be extended
+	 * @param charsetName
+	 *            name of the encoding char set
+	 * @throws FileNotFoundException
+	 *             if the file exists but is a directory rather than a regular
+	 *             file, does not exist but cannot be created, or cannot be
+	 *             opened for any other reason
+	 * @throws UnsupportedEncodingException
+	 *             if the named encoding is not supported
+	 * @see Charset
 	 */
-	public static OutputStreamWriter createEncodedFileWriter(File file, boolean append, String charsetName) throws FileNotFoundException, UnsupportedEncodingException {
-	  OutputStream output = new FileOutputStream(file, append);
-	  OutputStreamWriter writer = new OutputStreamWriter(output, charsetName);
-	  return writer;
+	public static OutputStreamWriter createEncodedFileWriter(File file,
+			boolean append, String charsetName) throws FileNotFoundException,
+			UnsupportedEncodingException {
+		OutputStream output = new FileOutputStream(file, append);
+		OutputStreamWriter writer = new OutputStreamWriter(output, charsetName);
+		return writer;
 	}
-	   
-    /**
-     * Creates a {@link Writer} to write to file with UTF-8
-     * encoding.
-     * @param file output file
-     * @param append indicated whether an existing file will be extended
-     * @throws FileNotFoundException if the file exists but is a directory rather than a regular file,
-     *         does not exist but cannot be created, or cannot be opened for any other reason 
-     */
-	public static OutputStreamWriter createUTF8FileWriter(File file, boolean append) throws FileNotFoundException {
-	  try {
-      return createEncodedFileWriter(file, append, "UTF-8");
-    } catch (UnsupportedEncodingException err) {
-      // Should not occur, but must be handled
-      throw new RuntimeException(err);
-    }
+
+	/**
+	 * Creates a {@link Writer} to write to file with UTF-8 encoding.
+	 * 
+	 * @param file
+	 *            output file
+	 * @param append
+	 *            indicated whether an existing file will be extended
+	 * @throws FileNotFoundException
+	 *             if the file exists but is a directory rather than a regular
+	 *             file, does not exist but cannot be created, or cannot be
+	 *             opened for any other reason
+	 */
+	public static OutputStreamWriter createUTF8FileWriter(File file,
+			boolean append) throws FileNotFoundException {
+		try {
+			return createEncodedFileWriter(file, append, "UTF-8");
+		} catch (UnsupportedEncodingException err) {
+			// Should not occur, but must be handled
+			throw new RuntimeException(err);
+		}
 	}
-	
 
 	/**
 	 * Versucht einen Eingabe-Stream zu schliessen.<br>
@@ -638,7 +656,7 @@
 	 * 
 	 * @param url
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * 
 	 * @deprecated Use DataUtilties.url2file
 	 */
@@ -964,7 +982,7 @@
 	 * @param cleanFilenames
 	 *            Convert target filenames to lowercase
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * @param cleanFilenames
 	 */
 	public final static void copyURLNoException(final URL source,
@@ -984,7 +1002,7 @@
 	 * @param destination
 	 *            Directory or filename...
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public final static void copyFileNoException(final Logger log,
 			final File source, final File destination,
@@ -1014,7 +1032,7 @@
 	 *            if <code>false</code>, the old filnem will be used when
 	 *            copying a file to file.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public final static void copyUrl(final URL source, File destination,
 			final Boolean cleanFilenames) throws IOException,
@@ -1045,7 +1063,7 @@
 	 *            Converts filenames to lower-case and removes special
 	 *            characters by calling {@link #cleanFilename(String)}
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 * 
 	 * @throws IOException
 	 */
@@ -1207,4 +1225,45 @@
 		return new File(url.getPath()).getName();
 	}
 
+	static public void unzipArchive(File archive, File outputDir) throws ZipException, IOException {
+			ZipFile zipfile = new ZipFile(archive);
+			for (Enumeration e = zipfile.entries(); e.hasMoreElements();) {
+				ZipEntry entry = (ZipEntry) e.nextElement();
+				unzipEntry(zipfile, entry, outputDir);
+			}
+	}
+
+	static public void unzipEntry(ZipFile zipfile, ZipEntry entry, File outputDir)
+			throws IOException {
+
+		if (entry.isDirectory()) {
+			createDir(new File(outputDir, entry.getName()));
+			return;
+		}
+
+		File outputFile = new File(outputDir, entry.getName());
+		if (!outputFile.getParentFile().exists()) {
+			createDir(outputFile.getParentFile());
+		}
+
+//		LOGGER.debug("Extracting: " + entry);
+		BufferedInputStream inputStream = new BufferedInputStream(
+				zipfile.getInputStream(entry));
+		BufferedOutputStream outputStream = new BufferedOutputStream(
+				new FileOutputStream(outputFile));
+
+		try {
+			IOUtils.copy(inputStream, outputStream);
+		} finally {
+			outputStream.close();
+			inputStream.close();
+		}
+	}
+
+	static public void createDir(File dir) {
+//		LOGGER.debug("Creating dir " + dir.getName());
+		if (!dir.mkdirs())
+			throw new RuntimeException("Can not create dir " + dir);
+	}
+
 }

Modified: trunk/src/schmitzm/swing/SwingUtil.java
===================================================================
--- trunk/src/schmitzm/swing/SwingUtil.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/schmitzm/swing/SwingUtil.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -95,7 +95,7 @@
  * 
  * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
  *         (University of Bonn/Germany)
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  * 
  * @version 1.1
  */
@@ -440,7 +440,7 @@
 	 *            Eine Componente des zu zentrierenden Fensters. Wenn comp kein
 	 *            {@link Window} ist, wird das Parent {@link Window} ermittelt.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void centerFrameOnScreenRandom(Component comp) {
 		Random r = new Random();
@@ -724,7 +724,7 @@
 	 *            GUI-Komponente
 	 * @param w
 	 *            Breite
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void setMinimumWidth(Component comp, int w) {
 		Dimension d = comp.getMinimumSize();
@@ -739,7 +739,7 @@
 	 *            GUI-Komponente
 	 * @param h
 	 *            Hoehe
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void setMinimumHeight(Component comp, int h) {
 		Dimension d = comp.getMinimumSize();
@@ -1320,7 +1320,7 @@
 	 * @param upIsUp
 	 *            Can be used to reverse the wheel (Down => Up in list).
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void addMouseWheelForCombobox(final JComboBox comboBox,
 			final boolean upIsUp) {
@@ -1363,7 +1363,7 @@
 	 * By default mouseheel up is up in the list.
 	 * 
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void addMouseWheelForCombobox(
 			final JComboBox comboBoxRuleListType) {
@@ -1376,7 +1376,7 @@
 	 * windows crashes around Sun JRE 1.6.10, so we use plain command line tools
 	 * here.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static void openOSFolder(final File fileDirectory) {
 

Modified: trunk/src/skrueger/AttributeMetadataImpl.java
===================================================================
--- trunk/src/skrueger/AttributeMetadataImpl.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/AttributeMetadataImpl.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -46,7 +46,7 @@
  * This class holds meta information about an attribute/column. This information
  * is used by {@link StyledLayerInterface} and many others.<br/>
  * 
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  */
 public class AttributeMetadataImpl extends AbstractAttributeMetadata implements
 		QualityQuantizable {

Modified: trunk/src/skrueger/RasterLegendData.java
===================================================================
--- trunk/src/skrueger/RasterLegendData.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/RasterLegendData.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -50,7 +50,7 @@
  * Holds all the additional information needed to paint a Legend for a
  * RasterLayer. So far, only Legends for one-band raster layers are supported.
  * 
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  * 
  *         TODO implements {@link Copyable}
  */

Modified: trunk/src/skrueger/geotools/LegendIconFeatureRenderer.java
===================================================================
--- trunk/src/skrueger/geotools/LegendIconFeatureRenderer.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/geotools/LegendIconFeatureRenderer.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -307,7 +307,7 @@
 	 * Define Java2D and other Hints
 	 * 
 	 * @param hints
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public void setHints(Hints hints) {
 		getHints().add(hints);

Modified: trunk/src/skrueger/geotools/MapContextManagerInterface.java
===================================================================
--- trunk/src/skrueger/geotools/MapContextManagerInterface.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/geotools/MapContextManagerInterface.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -41,7 +41,7 @@
  * Implementations of this class can can be used to fill/insert/remove a mapContext
  * with {@link StyledLayerInterface} objects.
  *
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  *
  */
 public interface MapContextManagerInterface {

Modified: trunk/src/skrueger/geotools/MapPaneToolBar.java
===================================================================
--- trunk/src/skrueger/geotools/MapPaneToolBar.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/geotools/MapPaneToolBar.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -903,7 +903,7 @@
 	 * Nuetzlich wenn die Componente gedruckt (z.B. wenn ein Screenshot gemacht
 	 * wird) wird. Dann werden wird der Hintergrund auf WEISS gesetzt.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	@Override
 	public void print(Graphics g) {

Modified: trunk/src/skrueger/geotools/StyledFS.java
===================================================================
--- trunk/src/skrueger/geotools/StyledFS.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/geotools/StyledFS.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -61,7 +61,7 @@
  * This class enables a non Atlas context to use the Atlas LayerPanel
  * {@link JPanel} as a {@link MapContextManagerInterface}
  * 
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  * 
  *         TODO Rename to StyledShapefile
  */
@@ -284,7 +284,7 @@
 	 * @return The {@link File} where the SLD was loaded from or
 	 *         <code>null</code> if there didn't exist a {@link File}.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public File getSldFile() {
 		return sldFile;

Modified: trunk/src/skrueger/geotools/StyledGridCoverageInterface.java
===================================================================
--- trunk/src/skrueger/geotools/StyledGridCoverageInterface.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/geotools/StyledGridCoverageInterface.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -33,7 +33,7 @@
 /**
  * A {@link StyledRasterInterface} that is typed to wrap a {@link GridCoverage2D}
  * 
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  */
 public interface StyledGridCoverageInterface extends StyledRasterInterface<GridCoverage2D>{
 };

Modified: trunk/src/skrueger/geotools/StyledLayerUtil.java
===================================================================
--- trunk/src/skrueger/geotools/StyledLayerUtil.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/geotools/StyledLayerUtil.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -943,7 +943,7 @@
 	 * @param featureType
 	 *            If this a legend for Point, Polygon or Line? Or ANY or NONE?
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
 	 */
 	public static JPanel createLegendSwingPanel(Style style,
 			final SimpleFeatureType featureType, final int iconWidth,

Modified: trunk/src/skrueger/geotools/StyledRasterInterface.java
===================================================================
--- trunk/src/skrueger/geotools/StyledRasterInterface.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/geotools/StyledRasterInterface.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -37,7 +37,7 @@
  * 
  * @see StyledGridCoverageInterface
  * 
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  */
 public interface StyledRasterInterface<E> extends StyledLayerInterface<E> {
 

Modified: trunk/src/skrueger/geotools/ZoomRestrictableGridInterface.java
===================================================================
--- trunk/src/skrueger/geotools/ZoomRestrictableGridInterface.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/geotools/ZoomRestrictableGridInterface.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -32,7 +32,7 @@
 /**
  * Classes that implement {@link ZoomRestrictableGridInterface} can be restricted to their max- and/or min zoom scale
  *
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  *
  */
 public interface ZoomRestrictableGridInterface {

Modified: trunk/src/skrueger/i8n/Translation.java
===================================================================
--- trunk/src/skrueger/i8n/Translation.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/i8n/Translation.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -57,7 +57,7 @@
  * Represents a {@link HashMap} of translations. toString() returns the
  * appropriate translation. This class is mutable.
  * 
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  */
 
 public class Translation extends HashMap<String, String> implements

Modified: trunk/src/skrueger/swing/ColorButton.java
===================================================================
--- trunk/src/skrueger/swing/ColorButton.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/swing/ColorButton.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -53,7 +53,7 @@
 	 * @param newColor
 	 *            {@link Color} to set.
 	 * 
-	 * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons
+	 * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons
 	 *         Tzeggai</a>
 	 */
 	public void setColor(final Color newColor) {

Modified: trunk/src/skrueger/swing/OkButton.java
===================================================================
--- trunk/src/skrueger/swing/OkButton.java	2010-11-15 00:53:55 UTC (rev 1272)
+++ trunk/src/skrueger/swing/OkButton.java	2010-11-15 16:22:47 UTC (rev 1273)
@@ -40,7 +40,7 @@
  * An Ok {@link JButton} without text, but with an expressive {@link Icon} that
  * symbolizes OK
  * 
- * @author <a href="mailto:skpublic at wikisquare.de">Stefan Alfons Tzeggai</a>
+ * @author <a href="mailto:tzeggai at wikisquare.de">Stefan Alfons Tzeggai</a>
  */
 public class OkButton extends JButton {
 



More information about the Schmitzm-commits mailing list