3 * Copyright © 2013 František Kučera (frantovo.cz)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package info.globalcode.sql.dk.configuration;
20 import static info.globalcode.sql.dk.Xmlns.CONFIGURATION;
21 import info.globalcode.sql.dk.DKException;
22 import info.globalcode.sql.dk.formatting.Formatter;
23 import info.globalcode.sql.dk.formatting.FormatterContext;
24 import info.globalcode.sql.dk.formatting.FormatterException;
25 import java.lang.reflect.Constructor;
26 import java.lang.reflect.InvocationTargetException;
27 import javax.xml.bind.annotation.XmlElement;
31 * @author Ing. František Kučera (frantovo.cz)
33 public class FormatterDefinition implements NameIdentified {
36 private String className;
38 public FormatterDefinition() {
41 public FormatterDefinition(String name, String className) {
43 this.className = className;
46 @XmlElement(name = "name", namespace = CONFIGURATION)
48 public String getName() {
52 public void setName(String name) {
57 * Filter's class. Must implement the
58 * <code>info.globalcode.sql.dk.formatting.Formatter</code> interface.
60 * <code>info.globalcode.sql.dk.formatting.AbstractFormatter</code> is strongly recommended.
61 * The constructor must accept one parameter:
62 * <code>info.globalcode.sql.dk.formatting.FormatterContext</code>
64 * @return fully qualified class name
66 @XmlElement(name = "class", namespace = CONFIGURATION)
67 public String getClassName() {
71 public void setClassName(String className) {
72 this.className = className;
80 public Formatter getInstance(FormatterContext context) throws FormatterException {
82 Constructor constructor = Class.forName(className).getConstructor(context.getClass());
84 Object instance = constructor.newInstance(context);
85 if (instance instanceof Formatter) {
86 return (Formatter) instance;
88 throw new FormatterException("Formatter " + instance + " does not implement the " + Formatter.class.getName() + " interface");
90 } catch (ClassNotFoundException e) {
91 throw new FormatterException("No formatter class with name: " + className, e);
92 } catch (NoSuchMethodException e) {
93 throw new FormatterException("Formatter class with no valid constructor: " + className, e);
94 } catch (InstantiationException | IllegalAccessException | InvocationTargetException e) {
95 throw new FormatterException("Formatter's constructor caused an error: " + className, e);