View Javadoc

1   package org.openrdf.concepts.owl;
2   
3   import org.openrdf.elmo.annotations.rdf;
4   import org.openrdf.concepts.rdf.List;
5   
6   @rdf("http://www.w3.org/2002/07/owl#AllDifferent")
7   public interface AllDifferent extends Thing {
8   
9   
10  	/** http://www.w3.org/2002/07/owl" target="alexandria_uri">http://www.w3.org/2002/07/owl#distinctMembers */
11  	@rdf("http://www.w3.org/2002/07/owl#distinctMembers")
12  	public abstract List<Class> getOwlDistinctMembers();
13  
14  	/** http://www.w3.org/2002/07/owl" target="alexandria_uri">http://www.w3.org/2002/07/owl#distinctMembers */
15  	public abstract void setOwlDistinctMembers(List<Class> value);
16  
17  }