teichmann@502: /* teichmann@502: * Copyright (c) 2013 by Intevation GmbH teichmann@502: * teichmann@502: * This program is free software under the LGPL (>=v2.1) teichmann@502: * Read the file LGPL.txt coming with the software for details teichmann@502: * or visit http://www.gnu.org/licenses/ if it does not exist. teichmann@502: */ teichmann@502: package org.dive4elements.artifacts.common.utils; teichmann@502: teichmann@502: import org.w3c.dom.Element; teichmann@502: teichmann@502: /** Simple interface to convert an XML DOM element to somthing opaque, teichmann@502: * Useful to do some config preprocessing. teichmann@502: */ teichmann@502: public interface ElementConverter { teichmann@502: Object convert(Element element); teichmann@502: } teichmann@502: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :