bug 136235 - comment-only change - update nsIGlobalHistory to use javadoc format, and properly document the API

r=chak, sr=dveditz
This commit is contained in:
alecf%netscape.com 2002-04-27 01:21:09 +00:00
parent 15b0c5bbab
commit 8d5e9bfc4c
2 changed files with 14 additions and 6 deletions

View File

@ -50,15 +50,19 @@ interface nsIGlobalHistory : nsISupports
{
/**
* addPage
* Add a page to the history - aReferrer can be null, but aDate
* must be the date to set in the history
* Add a page to the history
*
* @param aURL the url to the page
*/
void addPage(in string aURL);
/**
* isVisited
* returns true if a page has been passed into addPage().
* Checks to see if the given page is in history
*
* @return true if a page has been passed into addPage().
* @param aURL the url to the page
*/
boolean isVisited(in string aURL);
};

View File

@ -50,15 +50,19 @@ interface nsIGlobalHistory : nsISupports
{
/**
* addPage
* Add a page to the history - aReferrer can be null, but aDate
* must be the date to set in the history
* Add a page to the history
*
* @param aURL the url to the page
*/
void addPage(in string aURL);
/**
* isVisited
* returns true if a page has been passed into addPage().
* Checks to see if the given page is in history
*
* @return true if a page has been passed into addPage().
* @param aURL the url to the page
*/
boolean isVisited(in string aURL);
};