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.

ProjectPropertiesAdapter.java 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* *******************************************************************
  2. * Copyright (c) 1999-2001 Xerox Corporation,
  3. * 2002 Palo Alto Research Center, Incorporated (PARC).
  4. * All rights reserved.
  5. * This program and the accompanying materials are made available
  6. * under the terms of the Common Public License v1.0
  7. * which accompanies this distribution and is available at
  8. * http://www.eclipse.org/legal/cpl-v10.html
  9. *
  10. * Contributors:
  11. * Xerox/PARC initial implementation
  12. * ******************************************************************/
  13. package org.aspectj.ajde;
  14. import java.util.List;
  15. /**
  16. * @author Mik Kersten
  17. */
  18. public interface ProjectPropertiesAdapter {
  19. public String getProjectName();
  20. public String getRootProjectDir();
  21. public List getBuildConfigFiles();
  22. public String getDefaultBuildConfigFile();
  23. /**
  24. * @return The last selected build configuration for this project. If no selection
  25. * is present the default build config file for this project is returned.
  26. */
  27. public String getLastActiveBuildConfigFile();
  28. public List getProjectSourceFiles();
  29. public String getProjectSourcePath();
  30. public String getClasspath();
  31. public String getOutputPath();
  32. public String getAjcWorkingDir();
  33. // @todo: move to build options
  34. public String getBootClasspath();
  35. // @todo: move all below to execution options
  36. public String getClassToExecute();
  37. public String getExecutionArgs();
  38. public String getVmArgs();
  39. }