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

changeset 182
47a62d8d98b4
parent 1
9a66ca7c79fa
child 554
9d9f26857129
     1.1 --- a/src/share/classes/com/sun/tools/doclets/formats/html/LinkInfoImpl.java	Fri Dec 05 21:59:59 2008 -0800
     1.2 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/LinkInfoImpl.java	Thu Jan 08 16:26:59 2009 -0800
     1.3 @@ -235,15 +235,15 @@
     1.4       * @param classDoc   the class to link to.
     1.5       * @param where      the value of the marker #.
     1.6       * @param label      the label for the link.
     1.7 -     * @param isBold       true if the link should be bold.
     1.8 +     * @param isStrong       true if the link should be strong.
     1.9       * @param styleName  String style of text defined in style sheet.
    1.10       */
    1.11      public LinkInfoImpl (int context, ClassDoc classDoc, String where, String label,
    1.12 -            boolean isBold, String styleName){
    1.13 +            boolean isStrong, String styleName){
    1.14          this.classDoc = classDoc;
    1.15          this.where = where;
    1.16          this.label = label;
    1.17 -        this.isBold = isBold;
    1.18 +        this.isStrong = isStrong;
    1.19          this.styleName = styleName;
    1.20          setContext(context);
    1.21      }
    1.22 @@ -255,14 +255,14 @@
    1.23       * @param classDoc   the class to link to.
    1.24       * @param where      the value of the marker #.
    1.25       * @param label      the label for the link.
    1.26 -     * @param isBold       true if the link should be bold.
    1.27 +     * @param isStrong       true if the link should be strong.
    1.28       */
    1.29      public LinkInfoImpl (int context, ClassDoc classDoc, String where, String label,
    1.30 -            boolean isBold){
    1.31 +            boolean isStrong){
    1.32          this.classDoc = classDoc;
    1.33          this.where = where;
    1.34          this.label = label;
    1.35 -        this.isBold = isBold;
    1.36 +        this.isStrong = isStrong;
    1.37          setContext(context);
    1.38      }
    1.39  
    1.40 @@ -283,12 +283,12 @@
    1.41       *
    1.42       * @param context               the context of the link.
    1.43       * @param executableMemberDoc   the member to link to.
    1.44 -     * @param isBold                true if the link should be bold.
    1.45 +     * @param isStrong                true if the link should be strong.
    1.46       */
    1.47      public LinkInfoImpl (int context, ExecutableMemberDoc executableMemberDoc,
    1.48 -            boolean isBold){
    1.49 +            boolean isStrong){
    1.50          this.executableMemberDoc = executableMemberDoc;
    1.51 -        this.isBold = isBold;
    1.52 +        this.isStrong = isStrong;
    1.53          setContext(context);
    1.54      }
    1.55  
    1.56 @@ -297,11 +297,11 @@
    1.57       *
    1.58       * @param context    the context of the link.
    1.59       * @param classDoc   the class to link to.
    1.60 -     * @param isBold       true if the link should be bold.
    1.61 +     * @param isStrong       true if the link should be strong.
    1.62       */
    1.63 -    public LinkInfoImpl (int context, ClassDoc classDoc,  boolean isBold){
    1.64 +    public LinkInfoImpl (int context, ClassDoc classDoc,  boolean isStrong){
    1.65          this.classDoc = classDoc;
    1.66 -        this.isBold = isBold;
    1.67 +        this.isStrong = isStrong;
    1.68          setContext(context);
    1.69      }
    1.70  
    1.71 @@ -335,13 +335,13 @@
    1.72       * @param context    the context of the link.
    1.73       * @param type       the class to link to.
    1.74       * @param label      the label for the link.
    1.75 -     * @param isBold     true if the link should be bold.
    1.76 +     * @param isStrong     true if the link should be strong.
    1.77       */
    1.78      public LinkInfoImpl (int context, Type type, String label,
    1.79 -            boolean isBold){
    1.80 +            boolean isStrong){
    1.81          this.type = type;
    1.82          this.label = label;
    1.83 -        this.isBold = isBold;
    1.84 +        this.isStrong = isStrong;
    1.85          setContext(context);
    1.86      }
    1.87  
    1.88 @@ -351,13 +351,13 @@
    1.89       * @param context    the context of the link.
    1.90       * @param classDoc   the class to link to.
    1.91       * @param label      the label for the link.
    1.92 -     * @param isBold       true if the link should be bold.
    1.93 +     * @param isStrong       true if the link should be strong.
    1.94       */
    1.95      public LinkInfoImpl (int context, ClassDoc classDoc, String label,
    1.96 -            boolean isBold){
    1.97 +            boolean isStrong){
    1.98          this.classDoc = classDoc;
    1.99          this.label = label;
   1.100 -        this.isBold = isBold;
   1.101 +        this.isStrong = isStrong;
   1.102          setContext(context);
   1.103      }
   1.104  

mercurial