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 20060 - 20089 of 42047   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20060
Any efficient ways to check whether a resource exist in an inference model or not? Thanks!...
hangelite8872002
hangelite887...
Offline Send Email
Jan 1, 2006
11:05 am
20061
How can I add an instance with specific type into an infModel? Thanks! From Laurence...
hangelite8872002
hangelite887...
Offline Send Email
Jan 1, 2006
5:16 pm
20062
... InfModels inherit from Model and Model provides various .contains operations. See the javadoc for Model, specifically .containsResource Efficiency will...
Seaborne, Andy
andyseaborne
Offline Send Email
Jan 1, 2006
6:56 pm
20063
... Just add with an rdf:type property, linking the instance to the type. By the way, the OntModel class provides a much cleaner API for thinking about your...
Seaborne, Andy
andyseaborne
Offline Send Email
Jan 1, 2006
7:01 pm
20064
Assume that class A has property B, and an instance of A has many instances of property B. How can I list out all the values of instances of property B...
hangelite8872002
hangelite887...
Offline Send Email
Jan 2, 2006
8:54 am
20065
Can you give me a simple program codes showing that how to know that the infModel has changed by internal reasoner. I know that we can attach a listener to the...
hangelite8872002
hangelite887...
Offline Send Email
Jan 2, 2006
9:02 am
20066
I have the following warning message after running the program: WARN <Rule.java:922> - Rule references unimplemented functor: minus WARN <Rule.java:922> - Rule...
hangelite8872002
hangelite887...
Offline Send Email
Jan 2, 2006
11:03 am
20067
... The rule syntax is given (albeit informally) at: http://jena.sourceforge.net/inference/index.html#RULEsyntax ... Not quite sure what you mean by...
Dave Reynolds
derihy
Offline Send Email
Jan 2, 2006
11:21 am
20068
... If by "do something" you mean "infer something different from that which was infered before the change" and if your changes include deductions then there...
Dave Reynolds
derihy
Offline Send Email
Jan 2, 2006
11:32 am
20069
... So you want all things that are instances of A: (?x rdf:type A) and then you want to find the values they have for property B: (?x B ?y) You can implement...
Dave Reynolds
derihy
Offline Send Email
Jan 2, 2006
11:32 am
20070
... These mean you are using names for builtins that don't exist. Either use the correct names (see ...
Dave Reynolds
derihy
Offline Send Email
Jan 2, 2006
11:35 am
20071
Which is the intended usage of OntProperty.getDomain()? -- fxn...
Xavier Noria
fxnr
Offline Send Email
Jan 2, 2006
11:47 am
20072
If I want to set a property in an infModel, I use infModel.add(s, p, o) is it right? What about if I want to add a new instance s with property p with value o?...
hangelite8872002
hangelite887...
Offline Send Email
Jan 2, 2006
11:59 am
20073
... Er, to get the property domain of a property in the ontology API. Specifically, if you have: <owl:Property rdf:ID="foo"> <owl:domain rdf:resource="#Bar" />...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jan 2, 2006
12:07 pm
20074
... I am studying OWL and use Jena as a helper to try things. The question reworded is that since in general any property can have more than one domain because...
Xavier Noria
fxnr
Offline Send Email
Jan 2, 2006
12:51 pm
20075
... Same add(s,p,o) adds a statement to the model. As noted before, resources do not exist in models unless there is some statement involving them (including...
Seaborne, Andy
andyseaborne
Offline Send Email
Jan 2, 2006
1:05 pm
20076
as title...
hangelite8872002
hangelite887...
Offline Send Email
Jan 2, 2006
1:22 pm
20077
Hi Xavier, ... Among the many approaches, there are particular common patterns of using OWL and RDF, one of which is as a simple graph-based data ...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jan 2, 2006
1:30 pm
20078
... Jena's statements are immutable, so you can't change them. The solution is to delete the old statement and replace it with a new statement with same...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jan 2, 2006
1:33 pm
20079
as title...
hangelite8872002
hangelite887...
Offline Send Email
Jan 2, 2006
2:39 pm
20080
... Wow, given the expressiveness of OWL, and the decoupling of properties and classes by design in both standards, looks like forced and fragile to use them...
Xavier Noria
fxnr
Offline Send Email
Jan 2, 2006
2:43 pm
20081
... Please read the Javadoc for OntProperty, your question is quite straightforwardly answered there. In general, it is polite to do at least some work to...
Ian Dickinson
ian_j_dickinson
Offline Send Email
Jan 2, 2006
2:51 pm
20082
Hi, Some URIs seem not to be available (tutorial – Jena 2 Ontology API), as: - http://www.xfront.com/owl/ontologies/camera/camera.owl -...
Oscar Pereira
oscar@...
Send Email
Jan 2, 2006
5:17 pm
20083
You could try to see if the second google match http://protege.stanford.edu/plugins/owl/owl-library/camera.owl is the same version as requested by the...
Holger Knublauch
holger_knubl...
Offline Send Email
Jan 2, 2006
5:19 pm
20084
... Not under our control. ... Fixed - should be there now. ... Sorry about that, Andy...
Seaborne, Andy
andyseaborne
Offline Send Email
Jan 2, 2006
6:01 pm
20085
Hy Everybody! If I try to instantiate a XSDDateTime object like this, *************************************** Calendar c = Calendar.getInstance(); ...
thalb2005
Offline Send Email
Jan 2, 2006
8:23 pm
20086
... There are no problems, if I set the "month" minus 1, before calling c.set();...
thalb2005
Offline Send Email
Jan 2, 2006
8:38 pm
20087
Hi, ... The month argument of Calendar.set(year, month, date) is 0-based, e.g. 0 for January. Don't ask me why. So the output is correct. ... Same thing....
Richard Cyganiak
cygri
Offline Send Email
Jan 2, 2006
8:43 pm
20088
... Java calendar uses a 0-based month (Jan = 0) XSD dateTime uses a 1-based month (Jan = 1) So c.set(..10..) is November. Which is 11 to dateTime. So this...
Seaborne, Andy
andyseaborne
Offline Send Email
Jan 2, 2006
8:48 pm
20089
... From what I've seen so far, that follows from the OWL rule[*]: {?P @has rdfs:domain ?C. ?C @has rdfs:subClassOf ?D} => {?P rdfs:domain ?D}. BTW, it is...
Xavier Noria
fxnr
Offline Send Email
Jan 2, 2006
10:01 pm
Messages 20060 - 20089 of 42047   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