Mercurial > dive4elements > gnv-client
view gnv-artifacts/src/main/java/de/intevation/gnv/state/StateFactory.java @ 787:6cd8492019d8
Validate wkt string and display error messages if the validation failed (issue214).
gnv-artifacts/trunk@869 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Tue, 30 Mar 2010 16:51:20 +0000 |
parents | c4156275c1e1 |
children | a5526908f92f |
line wrap: on
line source
package de.intevation.gnv.state; import de.intevation.gnv.artifacts.GNVArtifactBase; import org.apache.log4j.Logger; import org.w3c.dom.Node; /** * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> * */ public class StateFactory { /** * the logger, used to log exceptions and additonaly information */ private static Logger log = Logger.getLogger(GNVArtifactBase.class); private static StateFactory instance = null; /** * Constructor */ public StateFactory() { super(); } public static StateFactory getInstance() { if (instance == null) { instance = new StateFactory(); } return instance; } public State createState(Node configuration) { log.debug("StateFactory.createState"); State state = null; try { String classname = ((org.w3c.dom.Element)configuration).getAttribute("state"); state = (State) (Class.forName(classname).newInstance()); state.setup(configuration); } catch (InstantiationException e) { log.error(e, e); } catch (IllegalAccessException e) { log.error(e, e); } catch (ClassNotFoundException e) { log.error(e, e); } return state; } }