01: /*******************************************************************************
02: * Portions created by Sebastian Thomschke are copyright (c) 2005-2007 Sebastian
03: * Thomschke.
04: *
05: * All Rights Reserved. This program and the accompanying materials
06: * are made available under the terms of the Eclipse Public License v1.0
07: * which accompanies this distribution, and is available at
08: * http://www.eclipse.org/legal/epl-v10.html
09: *
10: * Contributors:
11: * Sebastian Thomschke - initial implementation.
12: *******************************************************************************/package net.sf.oval.guard;
13:
14: /**
15: * Marker interface that is added to advised classes by the GuardAspect
16: * to indicate that constraints are actually enforced via AOP.<br>
17: * <br>
18: * <b>Important:</b> Do NOT directly implement this interface in your classes.
19: *
20: * @author Sebastian Thomschke
21: *
22: * @see net.sf.oval.guard.GuardAspect
23: */
24: public interface IsGuarded {
25: //
26: }
|