I'm not sure if this is based on my implementation, or if this is a feature of JENA.
I have a subject: person, and predicate: hasChildWithGender. If the person has two children who are both females, I would store two seperate statements for that person. However, when I try to add 2 duplicate statements into the JENA model (person hasChildWithGender female), (person hasChildWithGender female), and then do a listStatements, ti only shows one instance of this statement. Is there a way to have two duplicate statements in the JENA model, or should I create another data property that will help me encode how many children of each gender a person has? Thanks! Stephen Suffian
