|
||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |
Packages that use Domain | |
---|---|
org.dishevelled.vocabulary | A structured vocabulary is a description of concepts and their relations in a domain. |
org.dishevelled.vocabulary.simple | Simple implementation of the vocabulary interfaces. |
Uses of Domain in org.dishevelled.vocabulary |
---|
Methods in org.dishevelled.vocabulary that return Domain | |
---|---|
Domain |
Authority.createDomain(java.lang.String name)
Create a new domain maintained by this authority with the specified name (optional operation). |
Domain |
Concept.getDomain()
Return the domain of this concept. |
Domain |
Relation.getDomain()
Return the domain of this relation. |
Domain |
Mapping.getSource()
Return the source domain of this mapping. |
Domain |
Mapping.getTarget()
Return the target domain of this mapping. |
Methods in org.dishevelled.vocabulary that return types with arguments of type Domain | |
---|---|
java.util.Set<Domain> |
Authority.getDomains()
Return the set of domains maintained by this authority. |
Methods in org.dishevelled.vocabulary with parameters of type Domain | |
---|---|
Mapping |
Authority.createMapping(Domain source,
Domain target)
Create a new mapping maintained by this authority between the specified domains (optional operation). |
Uses of Domain in org.dishevelled.vocabulary.simple |
---|
Classes in org.dishevelled.vocabulary.simple that implement Domain | |
---|---|
class |
SimpleDomain
Simple implementation of the Domain interface. |
Fields in org.dishevelled.vocabulary.simple declared as Domain | |
---|---|
private Domain |
SimpleConcept.domain
Domain. |
private Domain |
SimpleRelation.domain
Domain. |
private Domain |
SimpleMapping.source
Source domain. |
private Domain |
SimpleMapping.target
Target domain. |
Fields in org.dishevelled.vocabulary.simple with type parameters of type Domain | |
---|---|
private java.util.Set<Domain> |
SimpleAuthority.domains
Set of domains. |
Methods in org.dishevelled.vocabulary.simple that return Domain | |
---|---|
Domain |
SimpleAuthority.createDomain(java.lang.String name)
|
Domain |
SimpleConcept.getDomain()
|
Domain |
SimpleRelation.getDomain()
|
Domain |
SimpleMapping.getSource()
|
Domain |
SimpleMapping.getTarget()
|
Methods in org.dishevelled.vocabulary.simple that return types with arguments of type Domain | |
---|---|
java.util.Set<Domain> |
SimpleAuthority.getDomains()
|
Methods in org.dishevelled.vocabulary.simple with parameters of type Domain | |
---|---|
Mapping |
SimpleAuthority.createMapping(Domain source,
Domain target)
|
Constructors in org.dishevelled.vocabulary.simple with parameters of type Domain | |
---|---|
SimpleConcept(Domain domain,
java.lang.String name,
java.lang.String accession,
java.lang.String definition)
Create a new concept with the specified name, accession, and definition in the specified domain. |
|
SimpleRelation(Domain domain,
java.lang.String name,
SimpleConcept source,
SimpleConcept target)
Create a new relation in the specified domain between concepts source and
target with the specified name. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES All Classes |