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.

IRuntimeProperties.java 962B

123456789101112131415161718192021222324252627282930
  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. /**
  13. * Interface to enable users to specify which class to run
  14. */
  15. public interface IRuntimeProperties {
  16. /**
  17. * @return class which contains the main method and should
  18. * be used to run the application
  19. */
  20. String getClassToExecute();
  21. /**
  22. * @return args which should be used as part of the execution
  23. * of the application
  24. */
  25. String getExecutionArgs();
  26. }