Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/aendvari/tethys/tag/message/MessageAncestorTag.java


1   /*
2    * MessageAncestorTag.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.message;
11  
12  import com.aendvari.tethys.context.message.*;
13  
14  
15  /**
16   * <p>A common class between {@link MessageTag} and {@link MessageBodyTag}.</p>
17   *
18   * @author  Scott Milne
19   *
20   */
21  
22  public interface MessageAncestorTag
23  {
24    public MessageContext getMessageContext();
25  }
26