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 891B

12345678910111213141516171819202122
  1. /*******************************************************************************
  2. * Copyright (c) 2006 IBM Corporation and others.
  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. * Matthew Webster - initial implementation
  10. *******************************************************************************/
  11. package org.aspectj.bridge;
  12. public class Constants {
  13. /* Default resource names for user and generate aop.xml file */
  14. public final static String AOP_USER_XML = "META-INF/aop.xml";
  15. public final static String AOP_AJC_XML = "META-INF/aop-ajc.xml";
  16. /* Resource name for OSGi */
  17. public final static String AOP_OSGI_XML = "org/aspectj/aop.xml";
  18. }