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

IHierarchyListener.java 779B

12345678910111213141516171819202122232425
  1. /* *******************************************************************
  2. * Copyright (c) 2003 Contributors.
  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. * Mik Kersten initial implementation
  11. * ******************************************************************/
  12. package org.aspectj.asm;
  13. import java.util.EventListener;
  14. /**
  15. * Compiler listeners get notified of structure model update events.
  16. *
  17. * @author Mik Kersten
  18. */
  19. public interface IHierarchyListener extends EventListener {
  20. void elementsUpdated(IHierarchy rootNode);
  21. }