langtools/src/share/classes/com/sun/tools/javadoc/ConstructorDocImpl.java
changeset 14802 969e90f68ac5
parent 14260 727a84636f12
child 21717 11ba59c9bbb5
equal deleted inserted replaced
14801:d66cab4ef397 14802:969e90f68ac5
    25 
    25 
    26 package com.sun.tools.javadoc;
    26 package com.sun.tools.javadoc;
    27 
    27 
    28 import com.sun.javadoc.*;
    28 import com.sun.javadoc.*;
    29 
    29 
       
    30 import com.sun.source.util.TreePath;
    30 import com.sun.tools.javac.code.Symbol.ClassSymbol;
    31 import com.sun.tools.javac.code.Symbol.ClassSymbol;
    31 import com.sun.tools.javac.code.Symbol.MethodSymbol;
    32 import com.sun.tools.javac.code.Symbol.MethodSymbol;
    32 import com.sun.tools.javac.tree.JCTree.JCMethodDecl;
       
    33 import com.sun.tools.javac.util.Position;
       
    34 
    33 
    35 /**
    34 /**
    36  * Represents a constructor of a java class.
    35  * Represents a constructor of a java class.
    37  *
    36  *
    38  *  <p><b>This is NOT part of any supported API.
    37  *  <p><b>This is NOT part of any supported API.
    56     }
    55     }
    57 
    56 
    58     /**
    57     /**
    59      * constructor.
    58      * constructor.
    60      */
    59      */
    61     public ConstructorDocImpl(DocEnv env, MethodSymbol sym,
    60     public ConstructorDocImpl(DocEnv env, MethodSymbol sym, TreePath treePath) {
    62                               String docComment, JCMethodDecl tree, Position.LineMap lineMap) {
    61         super(env, sym, treePath);
    63         super(env, sym, docComment, tree, lineMap);
       
    64     }
    62     }
    65 
    63 
    66     /**
    64     /**
    67      * Return true if it is a constructor, which it is.
    65      * Return true if it is a constructor, which it is.
    68      *
    66      *