Added LXR comments.

This commit is contained in:
waterson%netscape.com 1999-01-05 21:57:59 +00:00
parent 8d13344f04
commit 379ac6d48b
14 changed files with 78 additions and 8 deletions

View File

@ -19,7 +19,8 @@
/*
A "pseudo content element" that acts as a proxy to RDF.
Implementation for a "pseudo content element" that acts as a proxy
to the RDF graph.
Unfortunately, there is no one right way to transform RDF into a
document model. Ideally, one would like to use something like XSL to

View File

@ -16,6 +16,12 @@
* Reserved.
*/
/*
A catch-all header file for miscellaneous RDF stuff. Currently
contains error codes and vocabulary macros.
*/
#ifndef rdf_h___
#define rdf_h___

View File

@ -19,8 +19,8 @@
/*
This is an NGLayout-style content sink that knows how to build an
RDF content model from XML-serialized RDF.
An implementation for an NGLayout-style content sink that knows how
to build an RDF content model from XML-serialized RDF.
For more information on RDF, see http://www.w3.org/TR/WDf-rdf-syntax.

View File

@ -17,6 +17,13 @@
* Netscape Communications Corporation. All Rights Reserved.
*/
/*
An abstract base class that serves as the basis for the
implementation of the nsIRDFContentSink interface.
*/
#ifndef nsRDFContentSink_h__
#define nsRDFContentSink_h__

View File

@ -17,6 +17,14 @@
* Netscape Communications Corporation. All Rights Reserved.
*/
/*
An implementation for the nsIRDFDocument interface. This
implementation serves as the basis for generating an NGLayout
content model.
*/
#include "nsIArena.h"
#include "nsIContent.h"
#include "nsIDTD.h"

View File

@ -17,6 +17,13 @@
* Netscape Communications Corporation. All Rights Reserved.
*/
/*
Class declaration for an implementation of the nsIRDFDocument
interface.
*/
#ifndef nsRDFDocument_h___
#define nsRDFDocument_h___

View File

@ -17,6 +17,13 @@
* Netscape Communications Corporation. All Rights Reserved.
*/
/*
A content sink implementation that builds a feeds a content model
via the nsIRDFDocument interface.
*/
#include "nsICSSParser.h"
#include "nsIContent.h"
#include "nsIDOMComment.h"

View File

@ -19,7 +19,8 @@
/*
A "pseudo content element" that acts as a proxy to RDF.
Implementation for a "pseudo content element" that acts as a proxy
to the RDF graph.
Unfortunately, there is no one right way to transform RDF into a
document model. Ideally, one would like to use something like XSL to

View File

@ -17,6 +17,13 @@
* Netscape Communications Corporation. All Rights Reserved.
*/
/*
Class declaration for a "pseudo content element" that acts as a
proxy to the RDF graph.
*/
#ifndef nsRDFElement_h___
#define nsRDFElement_h___

View File

@ -19,9 +19,9 @@
/*
This builds an HTML-like model, complete with text nodes, that can
be displayed in a vanilla HTML content viewer. You can apply CSS2
styles to the text, etc.
An nsIRDFDocument implementation that builds an HTML-like model,
complete with text nodes. The model can be displayed in a vanilla
HTML content viewer by applying CSS2 styles to the text.
*/

View File

@ -17,6 +17,13 @@
* Netscape Communications Corporation. All Rights Reserved.
*/
/*
A basic content sink implementation that builds an in-memory RDF
graph.
*/
#include "nsRDFContentSink.h"
static NS_DEFINE_IID(kIRDFContentSinkIID, NS_IRDFCONTENTSINK_IID);

View File

@ -17,6 +17,13 @@
* Netscape Communications Corporation. All Rights Reserved.
*/
/*
An nsIRDFDocument implementation that builds a tree widget XUL
content model that is to be used with a tree control.
*/
#include "nsIRDFContent.h"
#include "nsIRDFCursor.h"
#include "nsIRDFDataBase.h"

View File

@ -19,7 +19,8 @@
/*
A "pseudo content element" that acts as a proxy to RDF.
Implementation for a "pseudo content element" that acts as a proxy
to the RDF graph.
Unfortunately, there is no one right way to transform RDF into a
document model. Ideally, one would like to use something like XSL to

View File

@ -16,6 +16,17 @@
* Reserved.
*/
/*
A data source that reads the 4.x "bookmarks.html" file and
constructs an in-memory data source.
TO DO
1) Write the modified bookmarks file back to disk.
*/
#include "nsIRDFDataSource.h"
#include "nsIRDFNode.h"
#include "nsIRDFService.h"