View Javadoc

1   /*
2    * Copyright (c) 2001-2003 The XDoclet team
3    * All rights reserved.
4    */
5   package xjavadoc;
6   
7   /***
8    * Describe what this class does
9    *
10   * @author         Ara Abrahamian
11   * @author         Aslak Hellesøy
12   * @created        February 16, 2002
13   * @todo-javadoc   Write javadocs for interface
14   */
15  public interface XField extends XMember, Type
16  {
17  	/***
18  	 * Gets the Transient attribute of the XField object
19  	 *
20  	 * @return   The Transient value
21  	 */
22  	boolean isTransient();
23  
24  	/***
25  	 * Gets the Volatile attribute of the XField object
26  	 *
27  	 * @return   The Volatile value
28  	 */
29  	boolean isVolatile();
30  }