/*
* XML 2 Java Binding (X2JB) - the excellent Java tool.
* Copyright 2007, by Richard Opalka.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not see the FSF site:
* http://www.fsf.org/ and search for the LGPL License document there.
*/
package com.x2jb.bind.handler;
import org.w3c.dom.Element;
import org.x2jb.bind.BindingException;
/**
* Element handler
*
* @author <a href="mailto:richard_opalka@yahoo.com">Richard Opalka</a>
* @version 1.0
*/
public class ElementHandler implements org.x2jb.bind.handler.ElementHandler {
public final Object bind( Element e, Class c ) throws BindingException {
return e;
}
public final Object getDefault( Class c ) throws BindingException {
return null;
}
}
|