Changeset 4 for trunk/src/ws/fugue88/jpath/ContextFactory.java
- Timestamp:
- 08/12/2005 07:01:46 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/src/ws/fugue88/jpath/ContextFactory.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ws/fugue88/jpath/ContextFactory.java
r2 r4 3 3 * 4 4 * $Log$ 5 * Revision 1.2 2005/08/12 19:01:46 dsowen 6 * Feature: can automatically fill missing parts of a graph. 7 * 5 8 * Revision 1.1 2005/08/03 00:35:29 dsowen 6 9 * Initial commit. … … 16 19 public Context createContext(final Object root) 17 20 { 18 return new Context(root, _binder); 21 return new Context(root, _binder, false); 22 } 23 24 public Context createModifyingContext(final Object root) 25 { 26 return new Context(root, _binder, true); 19 27 } 20 28
Note: See TracChangeset
for help on using the changeset viewer.
