소스 검색

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

tags/post_pr_153572
mwebster 18 년 전
부모
커밋
41340ae6cb
2개의 변경된 파일34개의 추가작업 그리고 0개의 파일을 삭제
  1. 16
    0
      bridge/src/org/aspectj/bridge/IMessageContext.java
  2. 18
    0
      weaver/src/org/aspectj/weaver/tools/ISupportsMessageContext.java

+ 16
- 0
bridge/src/org/aspectj/bridge/IMessageContext.java 파일 보기

@@ -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 파일 보기

@@ -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…
취소
저장