Hi Jason,
On Sat, 20 Aug 2011, jason_ni wrote:
I tried to compile openrdf Sesame api today, and encountered same problems
with Andi. First "parameters" issue. Then I found here by google. Then I
upgrade my jcc to 2.10. Then found the "t_JArray" problem...
Could you please where I can download the source code for this library and
reproduce this bug. If the source is not available, please isolate the bug
into a class that can be javac-compiled by itself and attach it to your
message.
Without being able to reproduce the bug there isn't much I can do.
Thanks !
Andi..
The Java code is:
----------------------------------
public class GraphQueryResultImpl extends IterationWrapper<Statement,
QueryEvaluationException> implements
GraphQueryResult
{
/*-----------*
* Variables *
*-----------*/
private Map<String, String> namespaces;
/*--------------*
* Constructors *
*--------------*/
public GraphQueryResultImpl(Map<String, String> namespaces,
Iterable<? extends Statement> statements) {
this(namespaces, statements.iterator());
}
public GraphQueryResultImpl(Map<String, String> namespaces,
Iterator<? extends Statement> statementIter) {
this(namespaces, new CloseableIteratorIteration<Statement,
QueryEvaluationException>(statementIter));
}
public GraphQueryResultImpl(Map<String, String> namespaces,
CloseableIteration<? extends Statement, ? extends
QueryEvaluationException> statementIter)
{
super(statementIter);
this.namespaces = Collections.unmodifiableMap(namespaces);
}
/*---------*
* Methods *
*---------*/
public Map<String, String> getNamespaces() {
return namespaces;
}
}
-------------------------------------
Hope this problem can be solved earlier. Thanks a lot!
Jason.
--
View this message in context:
http://pylucene-users-developers-list.2474766.n2.nabble.com/issue-with-automatic-iterable-detection-tp6068928p6705808.html
Sent from the PyLucene users & developers list mailing list archive at
Nabble.com.