diff options
author | mwebster <mwebster> | 2006-08-23 14:34:28 +0000 |
---|---|---|
committer | mwebster <mwebster> | 2006-08-23 14:34:28 +0000 |
commit | fa7ca52b5278bd824a43a08e3ecd5f038696bb1a (patch) | |
tree | e062147344cf481eb5639b4817fca1519107d2db /bridge/src | |
parent | 0f98c3d06b755e1474a556cea2928e6ccd49f041 (diff) | |
download | aspectj-fa7ca52b5278bd824a43a08e3ecd5f038696bb1a.tar.gz aspectj-fa7ca52b5278bd824a43a08e3ecd5f038696bb1a.zip |
Bug 149289 "Support system and user aop.xml configuration files" (add META-INF/aop-ajc.xml)
Diffstat (limited to 'bridge/src')
-rw-r--r-- | bridge/src/org/aspectj/bridge/Constants.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bridge/src/org/aspectj/bridge/Constants.java b/bridge/src/org/aspectj/bridge/Constants.java new file mode 100644 index 000000000..b68dc4adc --- /dev/null +++ b/bridge/src/org/aspectj/bridge/Constants.java @@ -0,0 +1,19 @@ +/******************************************************************************* + * Copyright (c) 2006 IBM Corporation and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Matthew Webster - initial implementation + *******************************************************************************/ +package org.aspectj.bridge; + +public class Constants { + + /* Default resource names for user and generate aop.xml file */ + public final static String AOP_USER_XML = "META-INF/aop.xml"; + public final static String AOP_AJC_XML = "META-INF/aop-ajc.xml"; + +} |