Browse Source

Bug 150487 "Tracing and Logging Framework" (allow LTW IMessageHandler implementations to add context)

tags/post_pr_153572
mwebster 17 years ago
parent
commit
41340ae6cb

+ 16
- 0
bridge/src/org/aspectj/bridge/IMessageContext.java View File

@@ -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 ();
}

+ 18
- 0
weaver/src/org/aspectj/weaver/tools/ISupportsMessageContext.java View File

@@ -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);
}

Loading…
Cancel
Save