Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/context/GNVArtifactContext.java @ 444:85f48e287fb3
Added configuration for vertical cross sections ("Profilschnitte")
gnv-artifacts/trunk@492 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Wed, 30 Dec 2009 10:35:19 +0000 |
parents | da21c256a0ba |
children | 07672838fa5f |
comparison
equal
deleted
inserted
replaced
443:da21c256a0ba | 444:85f48e287fb3 |
---|---|
2 * | 2 * |
3 */ | 3 */ |
4 package de.intevation.gnv.artifacts.context; | 4 package de.intevation.gnv.artifacts.context; |
5 | 5 |
6 import org.apache.log4j.Logger; | 6 import org.apache.log4j.Logger; |
7 | |
7 import org.w3c.dom.Document; | 8 import org.w3c.dom.Document; |
9 | |
10 import java.awt.Dimension; | |
8 | 11 |
9 import de.intevation.artifactdatabase.DefaultArtifactContext; | 12 import de.intevation.artifactdatabase.DefaultArtifactContext; |
10 | 13 |
11 /** | 14 /** |
12 * @author Tim Englich (tim.englich@intevation.de) | 15 * @author Tim Englich (tim.englich@intevation.de) |
30 DEFAULT_HORIZONTAL_CROSS_SECTION_PROFILE_SAMPLES = Integer.valueOf(250); | 33 DEFAULT_HORIZONTAL_CROSS_SECTION_PROFILE_SAMPLES = Integer.valueOf(250); |
31 | 34 |
32 public static final String PALETTES_KEY = | 35 public static final String PALETTES_KEY = |
33 "gnv.color.palettes"; | 36 "gnv.color.palettes"; |
34 | 37 |
38 public static final String VERTICAL_CROSS_SECTION_SAMPLES_KEY = | |
39 "gnv.vertical.cross.section.samples"; | |
40 | |
41 public static final Dimension DEFAULT_VERTICAL_CROSS_SECTION_SAMPLES = | |
42 new Dimension(1024, 768); | |
43 | |
44 public static final String VERTICAL_CROSS_SECTION_FILTER_FACTORIES_KEY = | |
45 "gnv.vertical.cross.section.filter.factories"; | |
46 | |
35 public GNVArtifactContext() { | 47 public GNVArtifactContext() { |
36 super(); | 48 super(); |
37 log.debug("GNVArtifactContext.Constructor"); | 49 log.debug("GNVArtifactContext.Constructor"); |
38 } | 50 } |
39 | 51 |