/*
 * Created on Sep 20, 2005
 * 
 * $Log$
 * Revision 1.1  2005/09/21 22:00:46  dsowen
 * Split out the access stuff into accesslib.
 * New Creator interface off-loads object creation to user.
 *
 */
package ws.fugue88.jpath;

/**
 * @author dsowen
 */
public class NullCreator implements GraphCreator {

	public Object create(final Class type, final Object root,
			final PathPart part)
	{
		return null;
	}
}