Sha256: 6cf558973196ff583427606b53e0cced53004cb31544e3d7db3bb2fd4fd1a4cd
Contents?: true
Size: 1.25 KB
Versions: 20
Compression:
Stored size: 1.25 KB
Contents
/* ============================================================================ Author : Dmitry Moskalchuk Version : 1.5 Copyright : Copyright (C) 2008 Rhomobile. All rights reserved. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. ============================================================================ */ package com.rhomobile.rhodes; public class RhodesInstance { private static Rhodes instance; public static Rhodes getInstance() { return instance; } public static void setInstance(Rhodes instance) { if ( RhodesInstance.instance == null ) RhodesInstance.instance = instance; } public static RhoLogConf getLogConf() { return getInstance().getLogConf(); } }
Version data entries
20 entries across 20 versions & 1 rubygems