]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.message/src/org/simantics/message/MessageService.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.message / src / org / simantics / message / MessageService.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.message;
13
14 import org.eclipse.core.runtime.IStatus;
15 import org.simantics.message.internal.Activator;
16
17 /**
18  * A front-end for accessing the shared ILogger service of the Simantics
19  * platform.
20  * 
21  * @author Tuukka Lehtonen
22  */
23 public final class MessageService {
24
25     /**
26      * Returns the shared ILogger service of the Simantics platform.
27      * 
28      * @return the shared ILogger service
29      */
30     public static ILogger getDefault() {
31         return Activator.getDefault().getMessages();
32     }
33
34     /**
35      * A convenience method for logging the specified status directly into the
36      * shared platform ILogger instance.
37      * 
38      * @param status the event to log
39      */
40     public static void defaultLog(IStatus status) {
41         getDefault().log(status);
42     }
43
44 }