Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
javadoc cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
abrokenjester committed Aug 1, 2019
1 parent b2f894b commit dcf9685
Show file tree
Hide file tree
Showing 19 changed files with 53 additions and 49 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* ElasticSearch index for the {@link LuceneSail}.
*/
package org.eclipse.rdf4j.sail.elasticsearch;
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* A Sail implementation for federated access to multiple databases.
*/
package org.eclipse.rdf4j.sail.federation;
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* Forward-chaining inferencers, implemented as {@link StackableSail}s.
*/
package org.eclipse.rdf4j.sail.inferencer.fc;

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* A Sail implementation that supports full-text indexing via the Lucene API.
*/
package org.eclipse.rdf4j.sail.lucene;
13 changes: 0 additions & 13 deletions memory/src/main/java/org/eclipse/rdf4j/sail/memory/design.txt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* An implementation of the RDF SAIL API that uses main memory for storage.
*
* This implementation uses a bipartite graph as data structure.
*/
package org.eclipse.rdf4j.sail.memory;

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* The Native Store.
*/
package org.eclipse.rdf4j.sail.nativerdf;

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* Helper and utility classes for the {@link SailRepository}
*/
package org.eclipse.rdf4j.repository.sail.helpers;
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* Repository implementation for local RDF databases that implement the SAIL SPI.
*/
package org.eclipse.rdf4j.repository.sail;

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* Abstract base implementation and internal helper classes for Sail implementations.
*/
package org.eclipse.rdf4j.sail.helpers;

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an SPI for RDF databases.
*
* The main interface is {@link org.eclipse.rdf4j.sail.Sail}, which defines methods for initialization, querying and
* starting transactions.
*/
package org.eclipse.rdf4j.sail;
9 changes: 0 additions & 9 deletions sail-api/src/main/java/org/eclipse/rdf4j/sail/package.html

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* Base functionality for Sail implementations that require multi-versioned concurrency control (MVCC).
*/
package org.eclipse.rdf4j.sail.base;
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* A Sail implementation for <a href="https://www.w3.org/TR/shacl/">SHACL</a> constraint checking.
*/
package org.eclipse.rdf4j.sail.shacl;

0 comments on commit dcf9685

Please sign in to comment.