1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
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
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.message;
14 import org.eclipse.core.runtime.IStatus;
15 import org.eclipse.core.runtime.MultiStatus;
18 * A more detailed version of {@link IStatus} tailored for Simantics' purposes.
21 * This interface can be used without OSGi running.
28 * @author Tuukka Lehtonen
30 public interface IDetailStatus extends IStatus {
33 * Status type severity (bit mask, value 16) indicating this status
34 * represents a debug message
39 public static final int DEBUG = 0x10;
42 * Returns the message describing the outcome in more detail than the value
43 * returned by {@link #getMessage()}. The message is localized to the
47 * Detailed descriptions messages can should contain additional information
48 * regarding the event, such as <code><a></code> hyperlinks to
49 * resources related to this event. This is necessary to provide a more
50 * concrete context for the messages.
53 * @return a localized detailed description
55 String getDetailedDescription();