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

r=chak, sr=dveditz


git-svn-id: svn://10.0.0.236/trunk@120057 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
alecf%netscape.com
2002-04-27 01:21:09 +00:00
parent 5d3bd9ef31
commit d3e760e121
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);
};