1 /* 2 * @(#)RoundCompleteListener.java 1.1 04/06/25 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package com.sun.mirror.apt; 9 10 /** 11 * Listener for the completion of a round of annotation processing. 12 * 13 * @author Joseph D. Darcy 14 * @author Scott Seligman 15 * @version 1.1 04/06/25 16 * @since 1.5 17 */ 18 public interface RoundCompleteListener extends AnnotationProcessorListener { 19 /** 20 * Invoked after all processors for a round have run to completion. 21 * 22 * @param event An event for round completion 23 */ 24 void roundComplete(RoundCompleteEvent event); 25 } 26