-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added consistent I to all interfaces
- Loading branch information
Miel Vander Sande
committed
Dec 28, 2015
1 parent
4aad817
commit 5d72031
Showing
22 changed files
with
127 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,13 +18,13 @@ | |
|
||
import org.linkeddatafragments.datasource.AbstractRequestProcessorForTriplePatterns; | ||
import org.linkeddatafragments.datasource.IFragmentRequestProcessor; | ||
import org.linkeddatafragments.fragments.LinkedDataFragment; | ||
import org.linkeddatafragments.fragments.tpf.TriplePatternElement; | ||
import org.linkeddatafragments.fragments.tpf.TriplePatternFragmentRequest; | ||
import org.linkeddatafragments.fragments.ILinkedDataFragment; | ||
import org.linkeddatafragments.fragments.tpf.ITriplePatternElement; | ||
import org.linkeddatafragments.fragments.tpf.ITriplePatternFragmentRequest; | ||
|
||
/** | ||
* Implementation of {@link IFragmentRequestProcessor} that processes | ||
* {@link TriplePatternFragmentRequest}s over data stored in Jena TDB. | ||
* {@link ITriplePatternFragmentRequest}s over data stored in Jena TDB. | ||
* | ||
* @author Bart Hanssens <[email protected]> | ||
* @author <a href="http://olafhartig.de">Olaf Hartig</a> | ||
|
@@ -43,7 +43,7 @@ public class JenaTDBBasedRequestProcessorForTPFs | |
|
||
@Override | ||
protected Worker getTPFSpecificWorker( | ||
final TriplePatternFragmentRequest<RDFNode,String> request ) | ||
final ITriplePatternFragmentRequest<RDFNode,String> request ) | ||
throws IllegalArgumentException | ||
{ | ||
return new Worker( request ); | ||
|
@@ -53,16 +53,16 @@ protected Worker getTPFSpecificWorker( | |
protected class Worker | ||
extends AbstractRequestProcessorForTriplePatterns.Worker<RDFNode,String> | ||
{ | ||
public Worker( final TriplePatternFragmentRequest<RDFNode,String> req ) | ||
public Worker( final ITriplePatternFragmentRequest<RDFNode,String> req ) | ||
{ | ||
super( req ); | ||
} | ||
|
||
@Override | ||
protected LinkedDataFragment createFragment( | ||
final TriplePatternElement<RDFNode,String> subject, | ||
final TriplePatternElement<RDFNode,String> predicate, | ||
final TriplePatternElement<RDFNode,String> object, | ||
protected ILinkedDataFragment createFragment( | ||
final ITriplePatternElement<RDFNode,String> subject, | ||
final ITriplePatternElement<RDFNode,String> predicate, | ||
final ITriplePatternElement<RDFNode,String> object, | ||
final long offset, | ||
final long limit ) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
import java.io.File; | ||
|
||
import org.linkeddatafragments.datasource.DataSource; | ||
import org.linkeddatafragments.datasource.DataSourceBase; | ||
import org.linkeddatafragments.datasource.IFragmentRequestProcessor; | ||
import org.linkeddatafragments.fragments.IFragmentRequestParser; | ||
import org.linkeddatafragments.fragments.tpf.TPFRequestParserForJenaBackends; | ||
|
@@ -13,7 +13,7 @@ | |
* @author Bart Hanssens <[email protected]> | ||
* @author <a href="http://olafhartig.de">Olaf Hartig</a> | ||
*/ | ||
public class JenaTDBDataSource extends DataSource { | ||
public class JenaTDBDataSource extends DataSourceBase { | ||
|
||
protected final JenaTDBBasedRequestProcessorForTPFs requestProcessor; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.