comparison dwtx/core/runtime/ILog.d @ 162:1a5b8f8129df

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents 7926b636c282
children
comparison
equal deleted inserted replaced
161:f8d52b926852 162:1a5b8f8129df
14 14
15 import dwt.dwthelper.utils; 15 import dwt.dwthelper.utils;
16 import dwtx.core.runtime.ILogListener; 16 import dwtx.core.runtime.ILogListener;
17 import dwtx.core.runtime.IStatus; 17 import dwtx.core.runtime.IStatus;
18 18
19 // import org.osgi.framework.Bundle; 19 import dwtx.org.osgi.framework.Bundle;
20 20
21 /** 21 /**
22 * A log to which status events can be written. Logs appear on individual 22 * A log to which status events can be written. Logs appear on individual
23 * plug-ins and on the platform itself. Clients can register log listeners which 23 * plug-ins and on the platform itself. Clients can register log listeners which
24 * will receive notification of all log events as they come in. 24 * will receive notification of all log events as they come in.
44 * Returns the plug-in with which this log is associated. 44 * Returns the plug-in with which this log is associated.
45 * 45 *
46 * @return the plug-in with which this log is associated 46 * @return the plug-in with which this log is associated
47 * @since 3.0 47 * @since 3.0
48 */ 48 */
49 // public Bundle getBundle(); 49 public Bundle getBundle();
50 // DWT FIXME: Bundle not yet included
51 50
52 /** 51 /**
53 * Logs the given status. The status is distributed to the log listeners 52 * Logs the given status. The status is distributed to the log listeners
54 * installed on this log and then to the log listeners installed on the platform. 53 * installed on this log and then to the log listeners installed on the platform.
55 * 54 *