You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TypeDelegateResolver.java 1.0KB

12345678910111213141516171819202122232425262728
  1. /* *******************************************************************
  2. * Copyright (c) 2010 Contributors
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * Andy Clement, SpringSource
  11. * ******************************************************************/
  12. package org.aspectj.weaver.bcel;
  13. import org.aspectj.weaver.ReferenceType;
  14. import org.aspectj.weaver.ReferenceTypeDelegate;
  15. /**
  16. * A type delegate resolver is able to create type delegates for a named reference type. A type delegate will implement
  17. * ReferenceTypeDelegate. There are three kind of delegate already in existence: those created for eclipse structures, those
  18. * created for bytecode structures, and those created based on reflection.
  19. *
  20. * @author Andy Clement
  21. */
  22. public interface TypeDelegateResolver {
  23. ReferenceTypeDelegate getDelegate(ReferenceType referenceType);
  24. }