src/share/classes/com/sun/tools/doclets/formats/html/markup/HtmlConstants.java

changeset 1606
ccbe7ffdd867
parent 1568
5f0731e4e5e6
child 2035
a2a5ad0853ed
equal deleted inserted replaced
1605:94e67bed460d 1606:ccbe7ffdd867
110 */ 110 */
111 public static final Content START_OF_FIELD_SUMMARY = 111 public static final Content START_OF_FIELD_SUMMARY =
112 new Comment("=========== FIELD SUMMARY ==========="); 112 new Comment("=========== FIELD SUMMARY ===========");
113 113
114 /** 114 /**
115 * Marker to identify start of properties summary.
116 */
117 public static final Content START_OF_PROPERTY_SUMMARY =
118 new Comment("=========== PROPERTY SUMMARY ===========");
119
120 /**
115 * Marker to identify start of method summary. 121 * Marker to identify start of method summary.
116 */ 122 */
117 public static final Content START_OF_METHOD_SUMMARY = 123 public static final Content START_OF_METHOD_SUMMARY =
118 new Comment("========== METHOD SUMMARY ==========="); 124 new Comment("========== METHOD SUMMARY ===========");
119 125
134 */ 140 */
135 public static final Content START_OF_FIELD_DETAILS = 141 public static final Content START_OF_FIELD_DETAILS =
136 new Comment("============ FIELD DETAIL ==========="); 142 new Comment("============ FIELD DETAIL ===========");
137 143
138 /** 144 /**
145 * Marker to identify start of property details.
146 */
147 public static final Content START_OF_PROPERTY_DETAILS =
148 new Comment("============ PROPERTY DETAIL ===========");
149
150 /**
139 * Marker to identify start of constructor details. 151 * Marker to identify start of constructor details.
140 */ 152 */
141 public static final Content START_OF_CONSTRUCTOR_DETAILS = 153 public static final Content START_OF_CONSTRUCTOR_DETAILS =
142 new Comment("========= CONSTRUCTOR DETAIL ========"); 154 new Comment("========= CONSTRUCTOR DETAIL ========");
143 155

mercurial