Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

WeavingClassLoader.java 968B

12345678910111213141516171819202122232425262728293031
  1. /* *******************************************************************
  2. * Copyright (c) 2004 IBM Corporation
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v 2.0
  6. * which accompanies this distribution and is available at
  7. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  8. *
  9. * Contributors:
  10. * Matthew Webster, Adrian Colyer,
  11. * Martin Lippert initial implementation
  12. * ******************************************************************/
  13. package org.aspectj.weaver.tools;
  14. import java.net.URL;
  15. /**
  16. * An interface for weaving class loaders to provide callbacks for a
  17. * WeavingAdaptor.
  18. */
  19. public interface WeavingClassLoader extends GeneratedClassHandler {
  20. /**
  21. * Returns the aspects to be used by a WeavingAdaptor to weave classes
  22. * defined by the class loader.
  23. * @return the aspects used for weaving classes.
  24. */
  25. URL[] getAspectURLs();
  26. }