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 1.1KB

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 v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  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. public final static int ACC_BRIDGE = 0x0040;
  19. public final static int ACC_VARARGS = 0x0080;
  20. public final static String RUNTIME_LEVEL_12 = "1.2";
  21. public final static String RUNTIME_LEVEL_15 = "1.5";
  22. public final static String RUNTIME_LEVEL_19 = "1.9";
  23. // Default for 1.5.0
  24. public final static String RUNTIME_LEVEL_DEFAULT = RUNTIME_LEVEL_15;
  25. }