-
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.
Update templates. Added correct counting
- Loading branch information
Showing
37 changed files
with
785 additions
and
434 deletions.
There are no files selected for viewing
154 changes: 0 additions & 154 deletions
154
...rg/linkeddatafragments/datasource/AbstractJenaBasedRequestProcessorForTriplePatterns.java
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
src/org/linkeddatafragments/datasource/DataSourceBase.java
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package org.linkeddatafragments.datasource; | ||
|
||
/** | ||
* | ||
* @author mielvandersande | ||
* @author Bart Hanssens | ||
*/ | ||
public abstract class DataSourceBase implements IDataSource { | ||
protected String title; | ||
protected String description; | ||
|
||
public DataSourceBase(String title, String description) { | ||
this.title = title; | ||
this.description = description; | ||
} | ||
|
||
@Override | ||
public String getDescription() { | ||
return this.description; | ||
}; | ||
|
||
@Override | ||
public String getTitle() { | ||
return this.title; | ||
}; | ||
|
||
@Override | ||
public void close() {} | ||
} |
Oops, something went wrong.