Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ICrossReferenceHandler.java 966B

1234567891011121314151617181920212223
  1. /*******************************************************************************
  2. * Copyright (c) 2000, 2003 IBM Corporation and others.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v 2.0
  5. * which accompanies this distribution, and is available at
  6. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  7. *
  8. * Contributors:
  9. * IBM Corporation - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.weaver;
  12. import org.aspectj.bridge.ISourceLocation;
  13. /**
  14. * Clients can pass a single cross-reference handler to the weaver on construction of a BcelWorld. Any cross-references detected
  15. * during munging will be notified to the handler.
  16. */
  17. public interface ICrossReferenceHandler {
  18. void addCrossReference(ISourceLocation from, ISourceLocation to, String kind, boolean runtimeTest);
  19. }