i m learning owl and i see example in https://www.w3.org/TR/owl2-primer/
[] rdf:type owl:AllDisjointClasses ;
owl:members ( :Woman :Man ) .
wonder where to define AllDisjointClasses on protege class view?
there's a Disjoint With on each class's description view, is this the same thing?
and when i put that statement in turtle syntax than open the source file, the protege throw an error dialog.
owl:disjointWith
is only for two class expressions. Can you try[ a owl:AllDisjointClasses ; owl:members ( :Woman :Man ) ] .
? It is seems to be a OWLAPI4 bug, which is used by Protege: both constructions are valid N3 and Turtle (there is also an open issue github.com/protegeproject/protege/issues/775 , but it seems the description is wrong now, it is fixed in Turtle 2013) – ssz