選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TypePatternMatcher.java 734B

1234567891011121314151617181920212223
  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. * ******************************************************************/
  10. package org.aspectj.weaver.tools;
  11. /**
  12. * A compiled AspectJ type pattern that can be used to
  13. * match against types at runtime.
  14. */
  15. public interface TypePatternMatcher {
  16. /**
  17. * Does this type pattern matcher match the
  18. * given type (Class).
  19. */
  20. boolean matches(Class aClass);
  21. }