/*
 * Created on Aug 2, 2005
 * 
 * $Log$
 * Revision 1.3  2005/09/21 22:00:45  dsowen
 * Split out the access stuff into accesslib.
 * New Creator interface off-loads object creation to user.
 *
 * Revision 1.2  2005/08/12 19:01:46  dsowen
 * Feature: can automatically fill missing parts of a graph.
 *
 * Revision 1.1  2005/08/03 00:35:29  dsowen
 * Initial commit.
 *
 */
package ws.fugue88.jpath;

/**
 * @author dsowen
 */
public class ContextFactory {

	public Context createContext(final Object root, final GraphCreator creator)
	{
		return new Context(root, _binder, creator);
	}

	private final Binder _binder = new Binder();
}