langtools/src/share/classes/com/sun/tools/doclets/formats/html/ConstructorWriterImpl.java
changeset 15385 ee1eebe7e210
parent 14542 7062120649c2
child 16319 e586bfeb39c5
equal deleted inserted replaced
15384:5a8d00abf076 15385:ee1eebe7e210
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2013, 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
   135             writer.addSrcLink(constructor, constructorName, pre);
   135             writer.addSrcLink(constructor, constructorName, pre);
   136         } else {
   136         } else {
   137             addName(constructor.name(), pre);
   137             addName(constructor.name(), pre);
   138         }
   138         }
   139         addParameters(constructor, pre);
   139         addParameters(constructor, pre);
       
   140         writer.addReceiverAnnotationInfo(constructor, pre);
   140         addExceptions(constructor, pre);
   141         addExceptions(constructor, pre);
   141         return pre;
   142         return pre;
   142     }
   143     }
   143 
   144 
   144     /**
   145     /**