Mercurial > dive4elements > framework
view artifact-database/src/main/java/de/intevation/artifactdatabase/DefaultArtifactContextFactory.java @ 363:4d3298295a64
Enhanced the State interface with a new method initialize() which might be used to initialize the State based on a model Artifact.
artifacts/trunk@3623 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 09 Jan 2012 08:15:35 +0000 |
parents | a367a0d011af |
children |
line wrap: on
line source
/* * Copyright (c) 2010 by Intevation GmbH * * This program is free software under the LGPL (>=v2.1) * Read the file LGPL.txt coming with the software for details * or visit http://www.gnu.org/licenses/ if it does not exist. */ package de.intevation.artifactdatabase; import de.intevation.artifacts.ArtifactContextFactory; import de.intevation.artifacts.GlobalContext; import org.w3c.dom.Document; /** * Default implementation of the context factory. * Creates a new @see DefaultArtifactContext. * * @author <a href="mailto:sascha.teichmann@intevation.de">Sascha L. Teichmann</a> */ public class DefaultArtifactContextFactory implements ArtifactContextFactory { /** * Default constructor. */ public DefaultArtifactContextFactory() { } public GlobalContext createArtifactContext(Document config) { return new DefaultArtifactContext(config); } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :