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.

TestIdeUIAdapter.java 793B

1234567891011121314151617181920212223
  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 v1.0
  5. * which accompanies this distribution and is available at
  6. * http://eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors: IBM Corporation - initial API and implementation
  9. * Helen Hawkins - initial version (bug 148190)
  10. *******************************************************************/
  11. package org.aspectj.ajde.ui.utils;
  12. import org.aspectj.ajde.IdeUIAdapter;
  13. /**
  14. * IdeUIAdapter with empty implementation
  15. */
  16. public class TestIdeUIAdapter implements IdeUIAdapter {
  17. public void displayStatusInformation(String message) {
  18. }
  19. }