/v3.2/nimbits-android/src/com/nimbits/android/dao/LocalDatabaseDaoFactory.java
http://nimbits-server.googlecode.com/ · Java · 33 lines · 11 code · 4 blank · 18 comment · 2 complexity · 359c841e8d3ce78d58e60bfd4d5ae641 MD5 · raw file
- /*
- * Copyright (c) 2010 Tonic Solutions LLC.
- *
- * http://www.nimbits.com
- *
- *
- * Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
- *
- * http://www.gnu.org/licenses/gpl.html
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
- */
- package com.nimbits.android.dao;
- /**
- * Created by bsautner
- * User: benjamin
- * Date: 7/6/11
- * Time: 5:01 PM
- */
- public class LocalDatabaseDaoFactory {
- private static LocalDatabaseDao instance;
- public static LocalDatabaseDao getInstance()
- {
- if (instance == null) {
- instance = new LocalDatabaseDaoImpl();
- }
- return instance;
- }
- }