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.

TestRuntimeProperties.java 867B

12345678910111213141516171819202122232425262728
  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.IRuntimeProperties;
  13. /**
  14. * IRuntimeProperties with empty implementation
  15. */
  16. public class TestRuntimeProperties implements IRuntimeProperties {
  17. public String getClassToExecute() {
  18. return null;
  19. }
  20. public String getExecutionArgs() {
  21. return null;
  22. }
  23. }