Source code: com/aendvari/tethys/tag/inset/InsetAncestorTag.java
1 /*
2 * InsetAncestorTag.java
3 *
4 * Copyright (c) 2001, 2002 Aendvari, Ltd. All Rights Reserved.
5 *
6 * See the file LICENSE for terms of use.
7 *
8 */
9
10 package com.aendvari.tethys.tag.inset;
11
12 import com.aendvari.tethys.context.*;
13
14
15 /**
16 * <p>A common class between {@link InsetBaseTag} and {@link InsetBodyTag}.</p>
17 *
18 * @author Scott Milne
19 *
20 */
21
22 public interface InsetAncestorTag
23 {
24 public Context getInsetContext();
25 }
26