Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/aendvari/common/model/ModelTreeFactory.java


1   /*
2    * ModelTreeFactory.java
3    *
4    * Copyright (c) 2001, 2002 Aendvari, Ltd. All Rights Reserved.
5    *
6    * See the file LICENSE for terms of use.
7    *
8    */
9   
10  package com.aendvari.common.model;
11  
12  
13  /**
14   * <p>Defines a factory interface for the creation of {@link ModelTree} instances.</p>
15   *
16   * @author  Scott Milne
17   *
18   */
19  
20  public interface ModelTreeFactory
21  {
22    /**
23     * Creates a new instance of a {@link ModelTree}.
24     *
25     * @return                  A {@link ModelTree} instance.
26     *
27     */
28  
29    public ModelTree createModelTree();
30  }
31