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.

PreferenceStoreConstants.java 1.0KB

123456789101112131415161718192021222324
  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.tools.ajbrowser.core;
  12. /**
  13. * Constants used by the preference store
  14. */
  15. public class PreferenceStoreConstants {
  16. public static final String BUILD_CLASSPATH = "build.classpath";
  17. public static final String RUNTIME_MAINCLASS = "runtime.mainClass";
  18. public static final String BUILD_OUTPUTPATH = "build.outputpath";
  19. public static final String JAVA_CLASSPATH = "java.class.path";
  20. public static final String NONSTANDARD_OPTIONS = "ajc.nonStandardOptions";
  21. }