View Javadoc

1   /*$Id: AladinAdapterFactory.java,v 1.3 2004/11/17 16:22:53 clq2 Exp $
2    * Created on 05-Nov-2004
3    *
4    * Copyright (C) AstroGrid. All rights reserved.
5    *
6    * This software is published under the terms of the AstroGrid 
7    * Software License version 1.2, a copy of which has been included 
8    * with this distribution in the LICENSE.txt file.  
9    *
10  **/
11  package org.astrogrid.store.adapter.aladin;
12  
13  
14  /*** Factory class, to isolate aladin code from the details of which implementation is being used for the Aladin Adapter.
15   * @author Noel Winstanley nw@jb.man.ac.uk 05-Nov-2004
16   * * @deprecated use {@link org.astrogrid.store.tree} instead
17   */
18  public class AladinAdapterFactory {
19  
20      
21      /*** create a new instance of an aladin adapter 
22       * @todo add seleciton of implementaiton based on config key*/
23      public AladinAdapter createAdapter() {
24          return new IterationSixAladinAdapter();
25      }
26  
27  }
28  
29  
30  /* 
31  $Log: AladinAdapterFactory.java,v $
32  Revision 1.3  2004/11/17 16:22:53  clq2
33  nww-itn07-704
34  
35  Revision 1.2.2.2  2004/11/16 17:27:59  nw
36  tidied imports
37  
38  Revision 1.2.2.1  2004/11/16 16:47:28  nw
39  copied aladinAdapter interfaces into a neutrally-named package.
40  deprecated original interfaces.
41  javadoc
42  
43  Revision 1.2  2004/11/11 17:50:42  clq2
44  Noel's aladin stuff
45  
46  Revision 1.1.2.1  2004/11/09 13:56:38  nw
47  first stab at an iteration6 implementation
48  
49  Revision 1.1  2004/11/05 17:10:41  nw
50  created factory class to return instance of aladin adapter.
51  returns the mock for now.
52   
53  */