author | naoto |
Tue, 29 Mar 2016 17:06:33 -0700 | |
changeset 36739 | 145210aba850 |
parent 25874 | 83c19f00452c |
child 38617 | d93a7f64e231 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
23136
aa8958a4c8f4
8035877: javadoc classes are missing @return and @param tags
jjg
parents:
5520
diff
changeset
|
2 |
* Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved. |
10 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5520 | 7 |
* published by the Free Software Foundation. Oracle designates this |
10 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5520 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
10 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5520 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
10 | 24 |
*/ |
25 |
||
26 |
package com.sun.javadoc; |
|
27 |
||
28 |
/** |
|
29 |
* Represents a field in a java class. |
|
30 |
* |
|
31 |
* @see MemberDoc |
|
32 |
* |
|
33 |
* @since 1.2 |
|
34 |
* @author Robert Field |
|
35 |
*/ |
|
36 |
public interface FieldDoc extends MemberDoc { |
|
37 |
||
38 |
/** |
|
39 |
* Get type of this field. |
|
23136
aa8958a4c8f4
8035877: javadoc classes are missing @return and @param tags
jjg
parents:
5520
diff
changeset
|
40 |
* |
aa8958a4c8f4
8035877: javadoc classes are missing @return and @param tags
jjg
parents:
5520
diff
changeset
|
41 |
* @return the type of this field. |
10 | 42 |
*/ |
43 |
Type type(); |
|
44 |
||
45 |
/** |
|
46 |
* Return true if this field is transient |
|
23136
aa8958a4c8f4
8035877: javadoc classes are missing @return and @param tags
jjg
parents:
5520
diff
changeset
|
47 |
* |
aa8958a4c8f4
8035877: javadoc classes are missing @return and @param tags
jjg
parents:
5520
diff
changeset
|
48 |
* @return true if this field is transient |
10 | 49 |
*/ |
50 |
boolean isTransient(); |
|
51 |
||
52 |
/** |
|
53 |
* Return true if this field is volatile |
|
23136
aa8958a4c8f4
8035877: javadoc classes are missing @return and @param tags
jjg
parents:
5520
diff
changeset
|
54 |
* |
aa8958a4c8f4
8035877: javadoc classes are missing @return and @param tags
jjg
parents:
5520
diff
changeset
|
55 |
* @return true if this field is volatile |
10 | 56 |
*/ |
57 |
boolean isVolatile(); |
|
58 |
||
59 |
/** |
|
60 |
* Return the serialField tags in this FieldDoc item. |
|
61 |
* |
|
62 |
* @return an array of <tt>SerialFieldTag</tt> objects containing |
|
23136
aa8958a4c8f4
8035877: javadoc classes are missing @return and @param tags
jjg
parents:
5520
diff
changeset
|
63 |
* all {@code @serialField} tags. |
10 | 64 |
*/ |
65 |
SerialFieldTag[] serialFieldTags(); |
|
66 |
||
67 |
/** |
|
68 |
* Get the value of a constant field. |
|
69 |
* |
|
70 |
* @return the value of a constant field. The value is |
|
71 |
* automatically wrapped in an object if it has a primitive type. |
|
72 |
* If the field is not constant, returns null. |
|
73 |
*/ |
|
74 |
Object constantValue(); |
|
75 |
||
76 |
/** |
|
77 |
* Get the value of a constant field. |
|
78 |
* |
|
79 |
* @return the text of a Java language expression whose value |
|
80 |
* is the value of the constant. The expression uses no identifiers |
|
81 |
* other than primitive literals. If the field is |
|
82 |
* not constant, returns null. |
|
83 |
*/ |
|
84 |
String constantValueExpression(); |
|
85 |
} |