Search the web
Sign In
New User? Sign Up
jena-dev · Jena Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 9634 - 9663 of 42024   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9634
... No, it means that any object of that property *is* an instance of Person (ie has rdf:type Person). ... I believe -- although I could be wrong, since I...
Chris Dollin
anover_alias
Offline Send Email
Aug 2, 2004
9:10 am
9635
When trying to connect with mysql, I am getting the following exception: com.hp.hpl.jena.db.RDFRDBException: Failure to instantiate DB Driver:test ...
Spamcatcher
spamcatcher1369
Offline Send Email
Aug 2, 2004
9:10 am
9636
... Look at the Javadoc for OntModel, which has a slew of createSomething() methods. -- Chris "electric hedgehog" Dollin C FAQs at:...
Chris Dollin
anover_alias
Offline Send Email
Aug 2, 2004
10:22 am
9637
Sorry I found the problem: I had put the database name in the database type field, hence it had tried to find a driver for Driver_test instead of Driver_MySQL....
Spamcatcher
spamcatcher1369
Offline Send Email
Aug 2, 2004
11:32 am
9638
... In the current implementation, only the *base* model is stored in the DB. The inferences are stored in memory. Dave is on holiday for another week or so;...
Chris Dollin
anover_alias
Offline Send Email
Aug 2, 2004
12:19 pm
9639
... String). ... Thanks, that's what I wanted to know. (Sorry if this question sounded stupid, but English is not my native language so I don't understand ...
tijlcottyn
Offline Send Email
Aug 2, 2004
1:55 pm
9640
On Monday 02 August 2004 14:54, tijlcottyn wrote: [>> is me] ... Note that a Restriction *is* a Class. It's not just named classes that count. ... The tricky...
Chris Dollin
anover_alias
Offline Send Email
Aug 2, 2004
2:54 pm
9641
Hi all.. I use the following piece of code to get the direct superclass of any given class. ExtendedIteratir ext = ontCl.listSuperClasses(true); I get...
Arunkumar Srinivasan
aruninusa2001
Offline Send Email
Aug 2, 2004
4:21 pm
9642
Arun, Should be that simple. Not clear from your message what anonymous class is being returned. Are you getting an anonymous intersection class back from the...
Howard Goldberg
hgoldberg200...
Offline Send Email
Aug 2, 2004
4:41 pm
9643
Hi Howard.. Let me explain you.. I am using the following piece of code 2 return only the direct classes.. ExtendedIterator ext = ontc.listSuperClasses(true);...
Arunkumar Srinivasan
aruninusa2001
Offline Send Email
Aug 2, 2004
5:02 pm
9644
Arun, Looking at the class koalawithphd, it is a complex class using an equivalence class: <owl:Class rdf:ID="KoalaWithPhD"> ...
Howard Goldberg
hgoldberg200...
Offline Send Email
Aug 2, 2004
5:40 pm
9645
There is a known bug with the direct-super/sub class methods when a class has equivalent classes, and when using no reasoner, or using a reasoner that doesn't...
Dickinson, Ian J
ian_j_dickinson
Offline Send Email
Aug 2, 2004
8:27 pm
9646
Hi Ian Sorry to ask you this, Can you give me an estimate on when this superclass and subclass fix might happen approximately. So that i can make changes in my...
Arunkumar Srinivasan
aruninusa2001
Offline Send Email
Aug 2, 2004
11:12 pm
9647
Hello, is it possible to retrieve from a resource that represents a blank node it's identifier used by Jena in N-Triple notation? An Examle would be...
Stefan
phobot@...
Send Email
Aug 3, 2004
8:01 am
9648
Stefan, You can retrieve the bNode by asking about it via its properties. _:a :p "me!" . then get the bNode with: Property p = model.createProperty(....) ; ...
Seaborne, Andy
andyseaborne
Offline Send Email
Aug 3, 2004
8:11 am
9649
... No. The resource doesn't know that identifier, or anything about the NTripleWriter. ... However, it's possible to follow the same algorithm that the...
Chris Dollin
anover_alias
Offline Send Email
Aug 3, 2004
8:16 am
9650
Arun - I hope to do it next week. Ian...
Dickinson, Ian J
ian_j_dickinson
Offline Send Email
Aug 3, 2004
8:28 am
9651
Hi, its me again. i have read the documentation. i am using the createClass method to create a new class in an existing ontology which i have read from my...
sam okai
sssamokai
Offline Send Email
Aug 3, 2004
8:44 am
9652
... I don't see any sign that you've written the model back out after you've added the class to it. -- Chris "electric hedgehog" Dollin C FAQs at:...
Chris Dollin
anover_alias
Offline Send Email
Aug 3, 2004
8:51 am
9653
... Actually, I should have said two other things first: (a) little bits of code like that don't help as much as you'd hope, because what I do is drop code...
Chris Dollin
anover_alias
Offline Send Email
Aug 3, 2004
8:58 am
9654
Hi Chris, Sorry i didnt make myself too clear.... what i meant when i said the class is not added is that, i open the food ontology and i dont find the class...
sam okai
sssamokai
Offline Send Email
Aug 3, 2004
9:16 am
9655
... The "whole code" need only be enough to demonstrate the problem. Nothing will be written to your ontology file unless you specifically request it to be...
Chris Dollin
anover_alias
Offline Send Email
Aug 3, 2004
9:30 am
9656
Andy and Chris, thanks for your answer. ... Maybe I shouldn't. I'll try to explain the reason why I am doing this as short as possible. I have a list of ...
Stefan
phobot@...
Send Email
Aug 3, 2004
10:07 am
9657
... [Presumably not a Jena database.] ... That seems to be going round the houses rather. If each of your database-statements is an SPO triple, why not turn it...
Chris Dollin
anover_alias
Offline Send Email
Aug 3, 2004
10:21 am
9658
Andy and Chris, thanks for your answer. ... Maybe I shouldn't. I'll try to explain the reason why I am doing this as short as possible. I have a list of ...
Stefan
phobot@...
Send Email
Aug 3, 2004
10:35 am
9659
... I will try that. Thank you. Stefan...
Stefan
phobot@...
Send Email
Aug 3, 2004
11:54 am
9660
hello again, at what points in owl can the restriction tag be used. cheers, nikhil __________________________________ Do you Yahoo!? Yahoo! Mail - Helps...
nikhil ninan
nikhil_gn
Offline Send Email
Aug 3, 2004
12:31 pm
9661
Hello Nikhil, A restriction is a class expression, so the answer is that you can use Restriction anywhere you can use a class expression. See the OWL primer...
Dickinson, Ian J
ian_j_dickinson
Offline Send Email
Aug 3, 2004
12:37 pm
9662
Hello Ian, Thank you very much... the importing of the ontology works... Regards, Bram ... operation ... a given ... model. ... addImport() ... resource for a ...
bpellens
Offline Send Email
Aug 3, 2004
12:51 pm
9663
hello folks, is there some way that the location of imports in owl files can be checked for.the thing when the ontmodel is used to read in an owl file, it ...
nikhil ninan
nikhil_gn
Offline Send Email
Aug 3, 2004
12:54 pm
Messages 9634 - 9663 of 42024   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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