Skip to search.
jena-dev · Jena Users

Group Information

  • Members: 2056
  • Category: Software
  • Founded: Sep 19, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 19176 - 19206 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
19176 Chris Dollin
anover_alias Offline Send Email
Nov 1, 2005
8:21 am
... That depends on what you mean by "C1 has an ObjectProperty P whose value is C2". If you mean that there's a statement C1 P C2 then you get C1 from C2 by...
19177 Babis Bratsas
babis_onto Offline Send Email
Nov 1, 2005
8:29 am
I want to Separating classes and instances in OWL. I have an owl file with classes and properties. I use protege to build it. I use jena to open it and ...
19178 Richard Cyganiak
cygri Offline Send Email
Nov 1, 2005
8:35 am
Hi Daniel, ... I think you are right, this looks like an error in the documentation. The CONSTRUCT, DESCRIBE and ASK examples all have the wrong method, but...
19179 Seaborne, Andy
andyseaborne Offline Send Email
Nov 1, 2005
9:22 am
... a ... "code ... ; ... but ... Yes - I've fixed the documentation in CVS. ... Depends on what you are trying to do. That turns a result set into a model...
19180 Dickinson, Ian John (...
ian_j_dickinson Offline Send Email
Nov 1, 2005
9:41 am
Hello Mahbub, ... This query says "select x and y where x has writer y". There is only one such resource in your source data (i.e. harry), and indeed that is...
19181 Dickinson, Ian John (...
ian_j_dickinson Offline Send Email
Nov 1, 2005
9:48 am
Hello Bratsis, ... I'm not really clear what you want to do. Are you authoring this ontology, or are you using someone else's ontology? If you are authoring...
19182 Dave Reynolds
derihy Offline Send Email
Nov 1, 2005
9:56 am
... Another possibility is that Bratsas has the ontology from Protege and wants to create instance data in Jena but wants it to store the instance data in a...
19183 Mahbub
mahbub79 Offline Send Email
Nov 1, 2005
10:26 am
sorry again IAN but still having the problem and i'm compeltely getting clueless what is happening :) if i execute this "PREFIX :...
19184 Michał Rój
michalroj Offline Send Email
Nov 1, 2005
1:13 pm
Hi Bratsas, The useful information about separating aBoxes from tBoxes can be found at the jena documentation: ...
19185 kevinatsmartpdm Offline Send Email Nov 1, 2005
3:27 pm
Dear all, this question is probably quite basic, anyway I was not able to solve it in a nice way... Let's say, I have an OntResource and want to give three...
19186 Chris Dollin
anover_alias Offline Send Email
Nov 1, 2005
3:42 pm
... You can use listLabels() to get all the labels, and select the one with no language code. ... I would use resource.listProperties( RDFS.label, null ) to...
19187 daniel mahler
xmahler Offline Send Email
Nov 1, 2005
4:58 pm
Hi, Here are some rule behaviours I do not understand. The following rules file +++++++++++++++++++++++++++++++++++++ @prefix : <#>. -> tableAll() . (:a :b :c)...
19188 Michael Schidlowsky
mschidlowsky Offline Send Email
Nov 1, 2005
6:44 pm
Ian, Thanks for your helpful reply. I wanted to follow up to let you know that it turns out that when I create a model with no reasoner things perform much...
19189 Diogo Ribeiro
diogospl Offline Send Email
Nov 1, 2005
7:03 pm
thank you Andy "Seaborne, Andy" <andy.seaborne@...> escreveu: ... A "join" is by extending the pattern - all the triple patterns must match for the whole...
19190 Babis Bratsas
babis_onto Offline Send Email
Nov 1, 2005
7:52 pm
Thank you all (Ian, Dave, Michal). Yes Dave you have understood my problem. Thanks Michal for your code. Best Regards Bratsas Charalampos - Dipl.Mathematics ,...
19191 Ian Dickinson
ian_j_dickinson Offline Send Email
Nov 1, 2005
8:44 pm
Hi Michael, ... Seems a reasonable explanation. ... Not that I know (Dave may know of a way, since it's his code :-). Rather than copying en masse to an inf...
19192 diogospl Offline Send Email Nov 2, 2005
12:42 am
guys.. I´m working whith an ontology(owl file) made in protege. I´m using eclipse and I´m trying to select some classes by an date atribute (datatype in...
19194 lxtahu Offline Send Email Nov 2, 2005
6:46 am
... C1`, ... I see, But,if I define C1,C2 like this: <owl:Class rdf:ID="C2"/> <owl:Class rdf:ID="C1"/> <owl:ObjectProperty rdf:ID="P"> <rdfs:domain...
19195 Chris Dollin
anover_alias Offline Send Email
Nov 2, 2005
7:31 am
... Because there are no statements with P as predicate and C2 as object in your OWL above. ... C2 rdf:type owl:Class. ... C1 rdf:type owl:Class. ... P...
19196 Seaborne, Andy
andyseaborne Offline Send Email
Nov 2, 2005
9:26 am
... Err - this query seems to be very old syntax SPARQL (or BRQL). What system and version are you using? It's not RDQL because RDQL does not have "PREFIX",...
19197 lxtahu Offline Send Email Nov 2, 2005
9:57 am
... yes,i was confused. and the problem(get C2 from C1) haven't been solved yet. OntProperty prange=m.getOntProperty ...
19198 Dave Reynolds
derihy Offline Send Email
Nov 2, 2005
12:22 pm
... Humm, looks like there is a problem with handling of pattern-less rules. I'll look into it. The common uses of rules are to fire off patterns and sometimes...
19199 Chris Dollin
anover_alias Offline Send Email
Nov 2, 2005
12:27 pm
... Because listStatements() is overloaded on it's third argument, whicgh can be eg a String, an Object, or an RDFNode; since `null` is a legal value for all...
19200 Dave Reynolds
derihy Offline Send Email
Nov 2, 2005
12:28 pm
... You don't need to do this, just use RDFS.range and RDFS.domain. ... listStatements(P, RDFS.domain, (RDFNode) null) ugly but a common idiom or ...
19201 Dave Reynolds
derihy Offline Send Email
Nov 2, 2005
12:34 pm
... There isn't a "turn off inferencing" flag. As Ian says, the nearest equivalent is to create an InfModel over your base data, work with the base model and...
19202 Diogo Ribeiro
diogospl Offline Send Email
Nov 2, 2005
2:35 pm
OK, I´ll tryed to write a clean code to be more easy to read.. below the real code from eclipse. String str = "SELECT ?x WHERE( ?x,...
19203 Chris Dollin
anover_alias Offline Send Email
Nov 2, 2005
2:59 pm
... Firstly, if you don't show us the exceptions it's hard to guess what's going on. Secondly, if you don't show us your code - a /complete, minimal/ example -...
19204 Marisa de Oliveira Sa...
msantos032004 Offline Send Email
Nov 2, 2005
3:16 pm
Hi, all: I started to learn ontologies for my master´s thesis. I´m a beginner user of Protege and I would like to try the Jena PersistentOntology example,...
19205 Jay
jay_askren_l... Offline Send Email
Nov 2, 2005
4:30 pm
When I run the following code: public static main(String[] args){ Calendar input = Calendar.getInstance(/*TimeZone.getTimeZone("GMT")*/); input.clear(); ...
19206 Dickinson, Ian John (...
ian_j_dickinson Offline Send Email
Nov 2, 2005
6:09 pm
Hi Marisa, It looks like there's a problem with the Jena 2.3 zip file. Sorry about that! I've attached the missing example files, and we'll look at getting the...
Messages 19176 - 19206 of 48259   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help