diff options
author | aclement <aclement> | 2008-05-30 17:22:03 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-05-30 17:22:03 +0000 |
commit | 6065757aea69aeee273f42e161ddf7483e3d597e (patch) | |
tree | af63e0bba0e308f0624102c461a45f131ff3ac46 /weaver/src | |
parent | 3177a16967d9af5cdd068b78678908543985e748 (diff) | |
download | aspectj-6065757aea69aeee273f42e161ddf7483e3d597e.tar.gz aspectj-6065757aea69aeee273f42e161ddf7483e3d597e.zip |
231396: marker interface - not used in anger yet
Diffstat (limited to 'weaver/src')
-rw-r--r-- | weaver/src/org/aspectj/weaver/Unresolved.java | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/weaver/src/org/aspectj/weaver/Unresolved.java b/weaver/src/org/aspectj/weaver/Unresolved.java new file mode 100644 index 000000000..2821337f4 --- /dev/null +++ b/weaver/src/org/aspectj/weaver/Unresolved.java @@ -0,0 +1,21 @@ +/* ******************************************************************* + * Copyright (c) 2008 Contributors + * 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: + * Andy Clement initial implementation + * ******************************************************************/ +package org.aspectj.weaver; + +/** + * Marker interface for entities that are not resolved. + * + * @author Andy Clement + */ +public interface Unresolved { + +} |