bump product version to 4.1.6.2
[LibreOffice.git] / qadevOOo / runner / graphical / GlobalLogWriter.java
blob8a6e799e3cec94591a353f6b5717d7dbfcd7f27d
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package graphical;
21 import share.LogWriter;
22 import stats.SimpleLogWriter;
24 public class GlobalLogWriter
26 private static LogWriter m_aGlobalLogWriter = null;
28 /**
29 * This is just a helper to get clearer code.
30 * use this GlobalLogWriter.println(...)
31 * @param _sMsg
33 protected static synchronized void println(String _sMsg)
35 get().println(_sMsg);
38 protected static synchronized LogWriter get()
40 if (m_aGlobalLogWriter == null)
42 SimpleLogWriter aLog = new SimpleLogWriter();
43 m_aGlobalLogWriter = aLog;
45 return m_aGlobalLogWriter;
48 // public static synchronized void initialize()
49 // {
50 // get().initialize(null, true);
51 // }
53 protected static synchronized void set(LogWriter _aLog)
55 m_aGlobalLogWriter = _aLog;