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.

Constants.java 974B

15 years ago
15 years ago
15 years ago
15 years ago
14 years ago
14 years ago
15 years ago
14 years ago
14 years ago
15 years ago
15 years ago
1234567891011121314151617181920212223242526272829
  1. /*******************************************************************************
  2. * Copyright (c) 2004 IBM
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available 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:
  9. * Andy Clement - initial API and implementation
  10. *******************************************************************************/
  11. package org.aspectj.weaver;
  12. /**
  13. * Some useful weaver constants.
  14. *
  15. * Current uses: 1. Holds values that are necessary for working with 1.5 code but which don't exist in a 1.4 world.
  16. */
  17. public interface Constants {
  18. int ACC_BRIDGE = 0x0040;
  19. int ACC_VARARGS = 0x0080;
  20. String RUNTIME_LEVEL_12 = "1.2";
  21. String RUNTIME_LEVEL_15 = "1.5";
  22. String RUNTIME_LEVEL_19 = "1.9";
  23. // Default for 1.5.0
  24. String RUNTIME_LEVEL_DEFAULT = RUNTIME_LEVEL_15;
  25. }