]> source.dussan.org Git - aspectj.git/commitdiff
Bug 150487 "Tracing and Logging Framework" (allow LTW IMessageHandler implementations...
authormwebster <mwebster>
Mon, 14 Aug 2006 15:54:06 +0000 (15:54 +0000)
committermwebster <mwebster>
Mon, 14 Aug 2006 15:54:06 +0000 (15:54 +0000)
bridge/src/org/aspectj/bridge/IMessageContext.java [new file with mode: 0644]
weaver/src/org/aspectj/weaver/tools/ISupportsMessageContext.java [new file with mode: 0644]

diff --git a/bridge/src/org/aspectj/bridge/IMessageContext.java b/bridge/src/org/aspectj/bridge/IMessageContext.java
new file mode 100644 (file)
index 0000000..2f5512a
--- /dev/null
@@ -0,0 +1,16 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     Matthew Webster - initial implementation
+ *******************************************************************************/
+package org.aspectj.bridge;
+
+public interface IMessageContext {
+
+       public String getContextId ();
+}
diff --git a/weaver/src/org/aspectj/weaver/tools/ISupportsMessageContext.java b/weaver/src/org/aspectj/weaver/tools/ISupportsMessageContext.java
new file mode 100644 (file)
index 0000000..69e55b1
--- /dev/null
@@ -0,0 +1,18 @@
+/*******************************************************************************
+ * Copyright (c) 2006 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * 
+ * Contributors:
+ *     Matthew Webster - initial implementation
+ *******************************************************************************/
+package org.aspectj.weaver.tools;
+
+import org.aspectj.bridge.IMessageContext;
+
+public interface ISupportsMessageContext {
+
+       public void setMessageContext (IMessageContext messageContext);
+}