Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a new tests that illustrates the improvements made with the matcher. #524

Merged
merged 2 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import org.apache.jena.graph.Node;
import org.apache.jena.graph.Triple;
import org.apache.jena.shared.PrefixMapping;
import org.apache.jena.sparql.core.Var;
import org.apache.jena.sparql.graph.PrefixMappingZero;
import org.apache.jena.sparql.sse.SSE;
Expand All @@ -26,7 +27,11 @@ public TriplePattern(Node subject, Node predicate, Node object) {
}

public TriplePattern(String string) {
Triple t = SSE.parseTriple("(" + string + ")", new PrefixMappingZero());
this(new PrefixMappingZero(), string);
}

public TriplePattern(PrefixMapping prefixes, String aPattern) {
Triple t = SSE.parseTriple("(" + aPattern + ")", prefixes);
this.subject = t.getSubject();
this.predicate = t.getPredicate();
this.object = t.getObject();
Expand Down
Loading