mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
Merge
This commit is contained in:
commit
28e828130d
129 changed files with 2316 additions and 591 deletions
|
@ -140,7 +140,8 @@ public class MethodWriterImpl extends AbstractExecutableMemberWriter
|
|||
*/
|
||||
@Override
|
||||
public Content getSignature(ExecutableElement method) {
|
||||
Content pre = new HtmlTree(HtmlTag.PRE);
|
||||
HtmlTree pre = new HtmlTree(HtmlTag.PRE);
|
||||
pre.setStyle(HtmlStyle.methodSignature);
|
||||
writer.addAnnotationInfo(method, pre);
|
||||
int annotationLength = pre.charCount();
|
||||
addModifiers(method, pre);
|
||||
|
|
|
@ -83,6 +83,7 @@ public enum HtmlStyle {
|
|||
memberNameLabel,
|
||||
memberNameLink,
|
||||
memberSummary,
|
||||
methodSignature,
|
||||
moduleLabelInPackage,
|
||||
moduleLabelInType,
|
||||
nameValue,
|
||||
|
|
|
@ -827,7 +827,7 @@ ul.ui-autocomplete li {
|
|||
margin: -100px 0 0 100px;
|
||||
z-index: 1;
|
||||
}
|
||||
.details pre {
|
||||
.methodSignature {
|
||||
white-space:normal;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue