Skip to main content



      Home
Home » Language IDEs » C / C++ IDE (CDT) » Add java-doc to my java library and eclipse says no java-doc found
Add java-doc to my java library and eclipse says no java-doc found [message #1822089] Thu, 27 February 2020 00:25
Eclipse UserFriend
Hello,

Using eclipse IDE I developed a java library.
I also exported it as a jar file.
I also created the java-doc for the project.
I added the doc/ folder to the jar too.
I created a test project and added my java library as external jar. I see that my library code works fine. But the IDE is not showing the documentation for the functions and properties tellgamestop. I want to make the IDE refer to the doc automatically. How to do that. I am gonna publish this library. How to make IDEs refer to the java-doc of my library. Is there any procedure?

/**
 * The Class JavaSMTPMailer.
 */
public class JavaSMTPMailer {

    /** The host. */
    private String host;

    /** The port. */
    private String port;

    /** The username. */
    private String username;

    /** The password. */
    private String password;

    /** The SMTP secure. */
    private String SMTPSecure = "tls";

    /** The use auth. */
    private boolean useAuth = false;    

    /** The global sender. */
    private InternetAddress globalSender = null;

    /** The global reply mail. */
    private InternetAddress[] globalReplyMail = null;

    /** The session. */
    private Session session; 

    /** The mail. */
    private Mail mail;



    /**
     * Instantiates a new java SMTP mailer.
     *
     * @param host the host
     * @param port the port
     */
    public JavaSMTPMailer(String host, String port){
        this.host = host;
        this.port = port;       
    }


    /**
     * Instantiates a new java SMTP mailer.
     *
     * @param host the host
     * @param port the port
     * @param username the username
     * @param password the password
     */
    public JavaSMTPMailer(String host, String port,String username, String password){
        this(host, port);
        this.username = username;
        this.password = password;
        this.useAuth = true;     
    }

[Updated on: Sat, 29 February 2020 00:42] by Moderator

Previous Topic:How to make a cloned c++/pydev editor tab appear right after the current tab
Next Topic:AVR32 hardware debug
Goto Forum:
  


Current Time: Sat Jun 21 14:13:38 EDT 2025

Powered by FUDForum. Page generated in 0.02868 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top