diff --git a/dspace-api/src/main/java/org/dspace/browse/package.html b/dspace-api/src/main/java/org/dspace/browse/package.html index a3b66f87c2..9c7b4f21c8 100644 --- a/dspace-api/src/main/java/org/dspace/browse/package.html +++ b/dspace-api/src/main/java/org/dspace/browse/package.html @@ -10,21 +10,25 @@

-Provides classes and mehtods for browsing Items in DSpace by whatever +Provides classes and methods for browsing Items in DSpace by whatever is specified in the configuration. The standard method by which you would perform a browse is as follows:

-Browses only return archived Items; other Items (eg, those +Browses only return archived Items; other Items (e.g. those in the workflow system) are ignored.

@@ -32,6 +36,7 @@ in the workflow system) are ignored.

An example use of the Browse API is shown below: +

     // Create or obtain a context object
     Context context = new Context();
@@ -56,10 +61,10 @@ An example use of the Browse API is shown below:
 	BrowseEngine be = new BrowseEngine();
     BrowseInfo results = be.browse(scope);
 
-

In this case, the results might be Items with titles like: +

 Tehran, City of the Ages
@@ -73,8 +78,6 @@ Thesis and Antithesis
 ...
 
-

-

Browse Indexes