Source code: com/aendvari/tethys/tag/model/ModelTreeAncestorTag.java
1 /*
2 * ModelTreeAncestorTag.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.model;
11
12 import com.aendvari.tethys.context.model.*;
13
14
15 /**
16 * <p>A common class between {@link ModelTreeTag} and {@link ModelTreeBodyTag}.</p>
17 *
18 * @author Scott Milne
19 *
20 */
21
22 public interface ModelTreeAncestorTag
23 {
24 public ModelContext getModelContext();
25 }
26