01: /*
02: * XML 2 Java Binding (X2JB) - the excellent Java tool.
03: * Copyright 2007, by Richard Opalka.
04: *
05: * This is free software; you can redistribute it and/or modify it
06: * under the terms of the GNU Lesser General Public License as
07: * published by the Free Software Foundation; either version 2.1 of
08: * the License, or (at your option) any later version.
09: *
10: * This software 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 GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this software; if not see the FSF site:
17: * http://www.fsf.org/ and search for the LGPL License document there.
18: */
19: package namespaces;
20:
21: import org.w3c.dom.Attr;
22: import org.x2jb.bind.BindingException;
23: import org.x2jb.bind.handler.AttributeHandler;
24:
25: /**
26: * Namespaces sample
27: *
28: * @author <a href="mailto:richard_opalka@yahoo.com">Richard Opalka</a>
29: * @version 1.0
30: */
31: public final class Handler implements AttributeHandler {
32:
33: public final Object bind(Attr attr, Class clazz)
34: throws BindingException {
35: if (clazz.equals(Direction.class)) {
36: return Direction.valueOf(attr.getNodeValue());
37: }
38:
39: throw new BindingException("Handler doesn't support '"
40: + clazz.getName() + "' class");
41: }
42:
43: public final Object getDefault(Class clazz) throws BindingException {
44: return Direction.IN_OUT;
45: }
46:
47: }
|