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.

IUIBuildMessageHandler.java 1.0KB

123456789101112131415161718192021222324252627
  1. /********************************************************************
  2. * Copyright (c) 2007 Contributors. All rights reserved.
  3. * This program and the accompanying materials are made available
  4. * under the terms of the Eclipse Public License v 2.0
  5. * which accompanies this distribution and is available at
  6. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  7. *
  8. * Contributors: IBM Corporation - initial API and implementation
  9. * Helen Hawkins - initial version (bug 148190)
  10. *******************************************************************/
  11. package org.aspectj.ajde;
  12. import org.aspectj.ajde.core.IBuildMessageHandler;
  13. /**
  14. * Extension to the IBuildMessageHandler to be used if only one BuildMessageHandler
  15. * is going to be used for all projects/build configuration files. Provides a method
  16. * for resetting the state of the BuildMessageHandler between compiles
  17. */
  18. public interface IUIBuildMessageHandler extends IBuildMessageHandler {
  19. /**
  20. * Reset the state of the message handler
  21. */
  22. void reset();
  23. }