langtools/src/share/classes/com/sun/tools/doclets/formats/html/LinkInfoImpl.java
changeset 25454 376a52c9540c
parent 17561 9f3505f35da9
equal deleted inserted replaced
25453:be80cf0463b3 25454:376a52c9540c
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 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
    28 
    28 
    29 import com.sun.javadoc.*;
    29 import com.sun.javadoc.*;
    30 import com.sun.tools.doclets.formats.html.markup.ContentBuilder;
    30 import com.sun.tools.doclets.formats.html.markup.ContentBuilder;
    31 import com.sun.tools.doclets.formats.html.markup.StringContent;
    31 import com.sun.tools.doclets.formats.html.markup.StringContent;
    32 import com.sun.tools.doclets.internal.toolkit.Content;
    32 import com.sun.tools.doclets.internal.toolkit.Content;
    33 import com.sun.tools.doclets.internal.toolkit.util.*;
       
    34 import com.sun.tools.doclets.internal.toolkit.util.links.*;
    33 import com.sun.tools.doclets.internal.toolkit.util.links.*;
    35 
    34 
    36 /**
    35 /**
    37  *  <p><b>This is NOT part of any supported API.
    36  *  <p><b>This is NOT part of any supported API.
    38  *  If you write code that depends on this, you do so at your own risk.
    37  *  If you write code that depends on this, you do so at your own risk.
   424      *
   423      *
   425      * @return true if this link is linkable and false if we can't link to the
   424      * @return true if this link is linkable and false if we can't link to the
   426      * desired place.
   425      * desired place.
   427      */
   426      */
   428     public boolean isLinkable() {
   427     public boolean isLinkable() {
   429         return Util.isLinkable(classDoc, configuration);
   428         return configuration.utils.isLinkable(classDoc, configuration);
   430     }
   429     }
   431 }
   430 }