< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/ClassWriter.java

Print this page
rev 58344 : records implementation


  56      *
  57      * @return class content header that needs to be added to the documentation
  58      */
  59     public Content getClassContentHeader();
  60 
  61     /**
  62      * Add the class tree documentation.
  63      *
  64      * @param classContentTree class content tree to which the documentation will be added
  65      */
  66     public void addClassTree(Content classContentTree);
  67 
  68     /**
  69      * Get the class information tree header.
  70      *
  71      * @return class informaion tree header that needs to be added to the documentation
  72      */
  73     public Content getClassInfoTreeHeader();
  74 
  75     /**
  76      * Add the type parameter information.
  77      *
  78      * @param classInfoTree content tree to which the documentation will be added
  79      */
  80     public void addTypeParamInfo(Content classInfoTree);
  81 
  82     /**
  83      * Add all super interfaces if this is an interface.
  84      *
  85      * @param classInfoTree content tree to which the documentation will be added
  86      */
  87     public void addSuperInterfacesInfo(Content classInfoTree);
  88 
  89     /**
  90      * Add all implemented interfaces if this is a class.
  91      *
  92      * @param classInfoTree content tree to which the documentation will be added
  93      */
  94     public void addImplementedInterfacesInfo(Content classInfoTree);
  95 
  96     /**
  97      * Add all the classes that extend this one.
  98      *
  99      * @param classInfoTree content tree to which the documentation will be added
 100      */




  56      *
  57      * @return class content header that needs to be added to the documentation
  58      */
  59     public Content getClassContentHeader();
  60 
  61     /**
  62      * Add the class tree documentation.
  63      *
  64      * @param classContentTree class content tree to which the documentation will be added
  65      */
  66     public void addClassTree(Content classContentTree);
  67 
  68     /**
  69      * Get the class information tree header.
  70      *
  71      * @return class informaion tree header that needs to be added to the documentation
  72      */
  73     public Content getClassInfoTreeHeader();
  74 
  75     /**
  76      * Add the type parameter and state component information.
  77      *
  78      * @param classInfoTree content tree to which the documentation will be added
  79      */
  80     public void addParamInfo(Content classInfoTree);
  81 
  82     /**
  83      * Add all super interfaces if this is an interface.
  84      *
  85      * @param classInfoTree content tree to which the documentation will be added
  86      */
  87     public void addSuperInterfacesInfo(Content classInfoTree);
  88 
  89     /**
  90      * Add all implemented interfaces if this is a class.
  91      *
  92      * @param classInfoTree content tree to which the documentation will be added
  93      */
  94     public void addImplementedInterfacesInfo(Content classInfoTree);
  95 
  96     /**
  97      * Add all the classes that extend this one.
  98      *
  99      * @param classInfoTree content tree to which the documentation will be added
 100      */


< prev index next >