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

Quick Search    Search Deep

Source code: org/fencedb/logic/LogicFactory.java


1   
2   package org.fencedb.logic;
3   
4   /**
5    *  Description of the Class
6    *
7    * @author  vico
8    * @created  June 11, 2003
9    */
10  public class LogicFactory
11  {
12  
13      /**
14       *  Gets the readLogicImpl attribute of the LogicFactory class
15       *
16       * @return  The readLogicImpl value
17       */
18      public static ReadLogic getReadLogicImpl()
19      {
20          return (ReadLogic)new ReadLogicOJBImpl();
21      }
22  
23  }
24