/**
* <copyright>
*
* Copyright (c) 2005, 2006, 2007, 2008 Springsite BV (The Netherlands) and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Martin Taal
* </copyright>
*
* $Id: DummyPropertyHandler.java,v 1.4 2008/02/28 07:08:24 mtaal Exp $
*/
package org.eclipse.emf.teneo.hibernate.mapping.property;
import java.lang.reflect.Method;
import java.util.Map;
import org.hibernate.HibernateException;
import org.hibernate.PropertyNotFoundException;
import org.hibernate.engine.SessionFactoryImplementor;
import org.hibernate.engine.SessionImplementor;
import org.hibernate.property.Getter;
import org.hibernate.property.PropertyAccessor;
import org.hibernate.property.Setter;
/**
* DummyAccessor, does nothing.
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
* @version $Revision: 1.4 $
*/
@SuppressWarnings("unchecked")
public class DummyPropertyHandler implements Getter, Setter, PropertyAccessor {
/**
* Generated Serial Version ID
*/
private static final long serialVersionUID = -5512925601236993580L;
/*
* (non-Javadoc)
*
* @see org.hibernate.property.PropertyAccessor#getGetter(java.lang.Class,
* java.lang.String)
*/
public Getter getGetter(Class theClass, String propertyName)
throws PropertyNotFoundException {
return this;
}
/*
* (non-Javadoc)
*
* @see org.hibernate.property.PropertyAccessor#getSetter(java.lang.Class,
* java.lang.String)
*/
public Setter getSetter(Class theClass, String propertyName)
throws PropertyNotFoundException {
return this;
}
/*
* (non-Javadoc)
*
* @see org.hibernate.property.Getter#get(java.lang.Object)
*/
public Object get(Object owner) throws HibernateException {
return null;
}
/*
* (non-Javadoc)
*
* @see org.hibernate.property.Getter#getForInsert(java.lang.Object,
* java.util.Map, org.hibernate.engine.SessionImplementor)
*/
public Object getForInsert(Object arg0, Map arg1, SessionImplementor arg2)
throws HibernateException {
return get(arg0);
}
/*
* (non-Javadoc)
*
* @see org.hibernate.property.Getter#getMethod()
*/
public Method getMethod() {
return null;
}
/*
* (non-Javadoc)
*
* @see org.hibernate.property.Getter#getMethodName()
*/
public String getMethodName() {
return null;
}
/*
* (non-Javadoc)
*
* @see org.hibernate.property.Getter#getReturnType()
*/
public Class getReturnType() {
return null;
}
/*
* (non-Javadoc)
*
* @see org.hibernate.property.Setter#set(java.lang.Object,
* java.lang.Object, org.hibernate.engine.SessionFactoryImplementor)
*/
public void set(Object target, Object value,
SessionFactoryImplementor factory) throws HibernateException {
}
}