langtools/src/share/classes/com/sun/tools/doclets/formats/html/MethodWriterImpl.java
changeset 15385 ee1eebe7e210
parent 14542 7062120649c2
child 16964 096de5815398
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
   128             writer.addSrcLink(method, methodName, pre);
   128             writer.addSrcLink(method, methodName, pre);
   129         } else {
   129         } else {
   130             addName(method.name(), pre);
   130             addName(method.name(), pre);
   131         }
   131         }
   132         addParameters(method, pre);
   132         addParameters(method, pre);
       
   133         addReceiverAnnotations(method, pre);
   133         addExceptions(method, pre);
   134         addExceptions(method, pre);
   134         return pre;
   135         return pre;
   135     }
   136     }
   136 
   137 
   137     /**
   138     /**