Index: trunk/src/ws/fugue88/jpath/ContextFactory.java
===================================================================
--- trunk/src/ws/fugue88/jpath/ContextFactory.java	(revision 2)
+++ trunk/src/ws/fugue88/jpath/ContextFactory.java	(revision 4)
@@ -3,4 +3,7 @@
  * 
  * $Log$
+ * 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.
@@ -16,5 +19,10 @@
 	public Context createContext(final Object root)
 	{
-		return new Context(root, _binder);
+		return new Context(root, _binder, false);
+	}
+
+	public Context createModifyingContext(final Object root)
+	{
+		return new Context(root, _binder, true);
 	}
 
