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.

ICommandEditor.java 894B

123456789101112131415161718192021222324252627
  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 v1.0
  6. * which accompanies this distribution and is available at
  7. * http://www.eclipse.org/legal/epl-v10.html
  8. *
  9. * Contributors:
  10. * Wes Isberg initial implementation
  11. * ******************************************************************/
  12. package org.aspectj.tools.ant.taskdefs;
  13. /**
  14. * Preprocess command-lines
  15. * @author Wes Isberg
  16. */
  17. public interface ICommandEditor {
  18. /**
  19. * Edit command being used.
  20. * @param command the String[] to edit
  21. * @return String[] input command if unchanged,
  22. * or new non-null array of non-null components otherwise
  23. */
  24. String[] editCommand(String[] command);
  25. }