Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/DischargeLongitudinalSection.java @ 430:7ab81ff32111 2.3
merged flys-artifacts/2.3
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:10 +0200 |
parents | 53cc794fee07 |
children | 627be3ca1ab6 |
comparison
equal
deleted
inserted
replaced
290:a6f56ed9238b | 430:7ab81ff32111 |
---|---|
1 package de.intevation.flys.artifacts.states; | |
2 | |
3 import org.apache.log4j.Logger; | |
4 | |
5 import org.w3c.dom.Element; | |
6 | |
7 import de.intevation.artifacts.Artifact; | |
8 import de.intevation.artifacts.CallContext; | |
9 | |
10 import de.intevation.artifacts.common.utils.XMLUtils; | |
11 | |
12 | |
13 public class DischargeLongitudinalSection extends DefaultState { | |
14 | |
15 /** The logger that is used in this state.*/ | |
16 private static Logger logger = | |
17 Logger.getLogger(DischargeLongitudinalSection.class); | |
18 | |
19 | |
20 protected Element[] createItems( | |
21 XMLUtils.ElementCreator cr, | |
22 Artifact artifact, | |
23 String name, | |
24 CallContext context) | |
25 { | |
26 logger.debug("DischargeLongitudinalSection.createItems"); | |
27 return null; | |
28 } | |
29 } | |
30 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : |