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

changeset 3913
242d0ecf82e4
parent 2415
7ceaee0e497b
child 3932
b8a6df910f59
equal deleted inserted replaced
3911:0db1cfa4dbc4 3913:242d0ecf82e4
1 /* 1 /*
2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 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 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
1439 see.position(), "doclet.see.class_or_package_not_found", 1439 see.position(), "doclet.see.class_or_package_not_found",
1440 tagName, seetext); 1440 tagName, seetext);
1441 } 1441 }
1442 } 1442 }
1443 if (configuration.currentcd != containing) { 1443 if (configuration.currentcd != containing) {
1444 refMemName = containing.name() + "." + refMemName; 1444 refMemName = (refMem instanceof ConstructorDoc) ?
1445 refMemName : containing.name() + "." + refMemName;
1445 } 1446 }
1446 if (refMem instanceof ExecutableMemberDoc) { 1447 if (refMem instanceof ExecutableMemberDoc) {
1447 if (refMemName.indexOf('(') < 0) { 1448 if (refMemName.indexOf('(') < 0) {
1448 refMemName += ((ExecutableMemberDoc)refMem).signature(); 1449 refMemName += ((ExecutableMemberDoc)refMem).signature();
1449 } 1450 }

mercurial