Hi,

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... 
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&lt;String, String&gt; namespaces,
Iterator<? extends Statement> statementIter) {
                this(namespaces, new CloseableIteratorIteration&lt;Statement,
QueryEvaluationException&gt;(statementIter));
        }

        public GraphQueryResultImpl(Map&lt;String, String&gt; namespaces,
                        CloseableIteration<? extends Statement, ? extends
QueryEvaluationException> statementIter)
        {
                super(statementIter);
                this.namespaces = Collections.unmodifiableMap(namespaces);
        }

        /*---------*
         * Methods *
         *---------*/

        public Map&lt;String, String&gt; 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.

Reply via email to