langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/AbstractMemberBuilder.java
changeset 19667 fdfce85627a9
parent 14542 7062120649c2
equal deleted inserted replaced
19666:01a225608c25 19667:fdfce85627a9
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 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
    60      * @throws DocletAbortException this method will always throw a
    60      * @throws DocletAbortException this method will always throw a
    61      * DocletAbortException because it is not supported.
    61      * DocletAbortException because it is not supported.
    62      */
    62      */
    63     public void build() throws DocletAbortException {
    63     public void build() throws DocletAbortException {
    64         //You may not call the build method in a subbuilder.
    64         //You may not call the build method in a subbuilder.
    65         throw new DocletAbortException();
    65         throw new DocletAbortException("not supported");
    66     }
    66     }
    67 
    67 
    68 
    68 
    69     /**
    69     /**
    70      * Build the sub component if there is anything to document.
    70      * Build the sub component if there is anything to document.