source: trunk/src/ws/fugue88/jpath/ContextFactory.java

Last change on this file was 6, checked in by dsowen, 21 years ago

Split out the access stuff into accesslib.
New Creator interface off-loads object creation to user.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 637 bytes
Line 
1/*
2 * Created on Aug 2, 2005
3 *
4 * $Log$
5 * Revision 1.3  2005/09/21 22:00:45  dsowen
6 * Split out the access stuff into accesslib.
7 * New Creator interface off-loads object creation to user.
8 *
9 * Revision 1.2  2005/08/12 19:01:46  dsowen
10 * Feature: can automatically fill missing parts of a graph.
11 *
12 * Revision 1.1  2005/08/03 00:35:29  dsowen
13 * Initial commit.
14 *
15 */
16package ws.fugue88.jpath;
17
18/**
19 * @author dsowen
20 */
21public class ContextFactory {
22
23        public Context createContext(final Object root, final GraphCreator creator)
24        {
25                return new Context(root, _binder, creator);
26        }
27
28        private final Binder _binder = new Binder();
29}
Note: See TracBrowser for help on using the repository browser.