Class PackageSummaryHTML

    • Constructor Summary

      Constructors 
      Constructor Description
      PackageSummaryHTML​(String jdPkgSummFName, Torello.JDUInternal.DataClasses.ClassUpgradeData.PathsAndTypes.Builder pathsTypesBuilder, Torello.JDUInternal.DataClasses.ClassUpgradeData.UpgradeSettings settings)  
    • Field Detail

      • serialVersionUID

        🡇     🗕  🗗  🗖
        protected static final long serialVersionUID
        This fulfils the SerialVersion UID requirement for all classes that implement Java's interface java.io.Serializable. Using the Serializable Implementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.
        See Also:
        Constant Field Values
        Code:
        Exact Field Declaration Expression:
         protected static final long serialVersionUID = 1;
        
      • JD_FRAMES_WARNING_MESSAGE

        🡅  🡇     🗕  🗗  🗖
        public static final java.lang.String JD_FRAMES_WARNING_MESSAGE
        Deprecated, but useful API Error-Message
        See Also:
        Constant Field Values
        Code:
        Exact Field Declaration Expression:
         public static final String JD_FRAMES_WARNING_MESSAGE =
                 "javadoc: warning - You have specified to generate frames, by using the --frames " +
                     "option.\n" +
                 "The default is currently to not generate frames and the support for \n" +
                 "frames will be removed in a future release.\n" +
                 "To suppress this warning, remove the --frames option and avoid the use of frames.\n";
        
    • Method Detail

      • head

        🡅  🡇     🗕  🗗  🗖
        public java.util.Vector<HTMLNodehead()
        Allows a User to both retrieve and to modify the contents of the 'package-summary.html' <HEAD>-Section.
        Returns:
        Vectorized-HTML of this Web-Page's <HEAD>...</HEAD> Section.
        Code:
        Exact Method Body:
         return this.head.html;
        
      • topNavBar

        🡅  🡇     🗕  🗗  🗖
        public java.util.Vector<HTMLNodetopNavBar()
        Allows a User to both retrieve and to modify the contents of the 'package-summary.html' Nav-Bar.
        Returns:
        Vectorized-HTML of this Web-Page's Upper Navigation Menu-Bar.
        Code:
        Exact Method Body:
         return (this.topNavBar == null) ? null : this.topNavBar.html;
        
      • bottomNavBar

        🡅  🡇     🗕  🗗  🗖
        public java.util.Vector<HTMLNodebottomNavBar()
        Allows a User to both retrieve and to modify the contents of the 'package-summary.html' Nav-Bar.
        Returns:
        Vectorized-HTML of this Web-Page's Lower Navigation Menu-Bar.
        Code:
        Exact Method Body:
         return (this.bottomNavBar == null) ? null : this.bottomNavBar.html;
        
      • description

        🡅  🡇     🗕  🗗  🗖
        public java.util.Vector<HTMLNodedescription()
        Allows a User to both retrieve and to modify the contents of the 'package-summary.html' Description Text-Area.
        Returns:
        Vectorized-HTML of this Web-Page's Main Description Box.
        Code:
        Exact Method Body:
         return this.description.html;