Uses of Class
org.gedcomx.common.ResourceReference

Packages that use ResourceReference
org.gedcomx The base GEDCOM X data format. 
org.gedcomx.agent The contributor model. 
org.gedcomx.common The id model defines the standard mechanisms for identifying genealogical entities. 
org.gedcomx.conclusion The conclusion model defines genealogical conclusion data. 
org.gedcomx.records The sources model. 
org.gedcomx.rt   
org.gedcomx.source The sources model. 
org.gedcomx.util   
 

Uses of ResourceReference in org.gedcomx
 

Methods in org.gedcomx with parameters of type ResourceReference
 Relationship Gedcomx.findCoupleRelationship(ResourceReference person1, ResourceReference person2)
          Find the couple relationship (if any) that corresponds to the relationship between the people with the given IDs.
 Relationship Gedcomx.findParentChildRelationship(ResourceReference parent, ResourceReference child)
          Find the parent-child relationship between the given two persons.
protected static boolean Gedcomx.samePerson(ResourceReference ref1, ResourceReference ref2)
          Tell whether the given resource reference is referencing the current person
 

Uses of ResourceReference in org.gedcomx.agent
 

Methods in org.gedcomx.agent that return ResourceReference
 ResourceReference Agent.getHomepage()
          The homepage of the person or organization.
 ResourceReference Agent.getOpenid()
          The openid of the person or organization.
 ResourceReference OnlineAccount.getServiceHomepage()
          The homepage of the service that provides this account.
 

Methods in org.gedcomx.agent that return types with arguments of type ResourceReference
 List<ResourceReference> Agent.getEmails()
          The emails that belong to this person or organization.
 List<ResourceReference> Agent.getPhones()
          The phones that belong to this person or organization.
 

Methods in org.gedcomx.agent with parameters of type ResourceReference
 void Agent.addEmail(ResourceReference email)
          Add an email.
 void Agent.addPhone(ResourceReference phone)
          Add a phone.
 Agent Agent.email(ResourceReference email)
          Build up this agent with an email address.
 Agent Agent.homepage(ResourceReference homepage)
          Build up this agent with a home page.
 Agent Agent.openid(ResourceReference openid)
          Build up this agent with a open id.
 Agent Agent.phone(ResourceReference phone)
          Build up this agent with a phone number.
 OnlineAccount OnlineAccount.serviceHomepage(ResourceReference serviceHomepage)
          Build up this online account with a service homepage.
 void Agent.setHomepage(ResourceReference homepage)
          The homepage of the person or organization.
 void Agent.setOpenid(ResourceReference openid)
          The openid of the person or organization.
 void OnlineAccount.setServiceHomepage(ResourceReference serviceHomepage)
          The homepage of the service that provides this account.
 

Method parameters in org.gedcomx.agent with type arguments of type ResourceReference
 void Agent.setEmails(List<ResourceReference> emails)
          The emails that belong to this person or organization.
 void Agent.setPhones(List<ResourceReference> phones)
          The phones that belong to this person or organization.
 

Uses of ResourceReference in org.gedcomx.common
 

Methods in org.gedcomx.common that return ResourceReference
 ResourceReference Attribution.getContributor()
          Reference to the contributor of the attributed data.
 ResourceReference ResourceReference.resource(URI resource)
          Build up this resource reference with a resource.
 ResourceReference ResourceReference.resourceId(String resourceId)
          Build up this resource reference with a resource id.
 

Methods in org.gedcomx.common with parameters of type ResourceReference
 Attribution Attribution.contributor(ResourceReference contributor)
          Build up this attribution with a contributor.
 void Attribution.setContributor(ResourceReference contributor)
          Reference to the contributor of the attributed data.
 

Uses of ResourceReference in org.gedcomx.conclusion
 

Methods in org.gedcomx.conclusion that return ResourceReference
 ResourceReference Conclusion.getAnalysis()
          A reference to the analysis document explaining the analysis that went into this conclusion.
 ResourceReference PlaceDescription.getJurisdiction()
          A reference to a description of the jurisdiction this place.
 ResourceReference FamilyView.getParent1()
          A reference to a parent in the family.
 ResourceReference FamilyView.getParent2()
          A reference to a parent in the family.
 ResourceReference EventRole.getPerson()
          Reference to the person playing the role in the event.
 ResourceReference Relationship.getPerson1()
          A reference to a person in the relationship.
 ResourceReference Relationship.getPerson2()
          A reference to a person in the relationship.
 ResourceReference PlaceDescription.getPlace()
          A reference to the place being described.
 ResourceReference PlaceDescription.getSpatialDescription()
          A reference to a geospatial description of this place.
 

Methods in org.gedcomx.conclusion that return types with arguments of type ResourceReference
 List<ResourceReference> FamilyView.getChildren()
          A list of references to the children of this family.
 

Methods in org.gedcomx.conclusion with parameters of type ResourceReference
 void FamilyView.addChild(ResourceReference child)
          Add a child.
 PlaceDescription PlaceDescription.analysis(ResourceReference analysis)
           
 Document Document.analysis(ResourceReference analysis)
           
 Person Person.analysis(ResourceReference analysis)
           
 Conclusion Conclusion.analysis(ResourceReference analysis)
          Add a reference to the analysis for this conclusion.
 Gender Gender.analysis(ResourceReference analysis)
           
 Relationship Relationship.analysis(ResourceReference analysis)
           
 Event Event.analysis(ResourceReference analysis)
           
 EventRole EventRole.analysis(ResourceReference analysis)
           
 Name Name.analysis(ResourceReference analysis)
           
 Fact Fact.analysis(ResourceReference analysis)
           
 Subject Subject.analysis(ResourceReference analysis)
           
 FamilyView FamilyView.child(ResourceReference child)
          Build out this family by adding a child.
 PlaceDescription PlaceDescription.jurisdiction(ResourceReference jurisdiction)
          Build out this place description with a jurisdiction.
 FamilyView FamilyView.parent1(ResourceReference parent1)
          Build out this family with a reference to parent1.
 FamilyView FamilyView.parent2(ResourceReference parent2)
          Build out this family with a reference to parent2.
 EventRole EventRole.person(ResourceReference person)
          Build up this event role with a person.
 Relationship Relationship.person1(ResourceReference person1)
          Build out this relationship with a reference to person 1.
 Relationship Relationship.person2(ResourceReference person2)
          Build out this relationship with a reference to person 2.
 PlaceDescription PlaceDescription.place(ResourceReference place)
          Build out this place description with a place.
 void Conclusion.setAnalysis(ResourceReference analysis)
          A reference to the analysis document explaining the analysis that went into this conclusion.
 void PlaceDescription.setJurisdiction(ResourceReference jurisdiction)
          A reference to a description of the jurisdiction this place.
 void FamilyView.setParent1(ResourceReference parent1)
          A reference to a parent in the family.
 void FamilyView.setParent2(ResourceReference parent2)
          A reference to a parent in the family.
 void EventRole.setPerson(ResourceReference person)
          Reference to the person playing the role in the event.
 void Relationship.setPerson1(ResourceReference person1)
          A reference to a person in the relationship.
 void Relationship.setPerson2(ResourceReference person2)
          A reference to a person in the relationship.
 void PlaceDescription.setPlace(ResourceReference place)
          A reference to the place being described.
 void PlaceDescription.setSpatialDescription(ResourceReference spatialDescription)
          A reference to a geospatial description of this place.
 PlaceDescription PlaceDescription.spatialDescription(ResourceReference spatialDescription)
          Build out this place description with a spacial description.
 

Method parameters in org.gedcomx.conclusion with type arguments of type ResourceReference
 void FamilyView.setChildren(List<ResourceReference> children)
          A list of references to the children of this family.
 

Uses of ResourceReference in org.gedcomx.records
 

Methods in org.gedcomx.records with parameters of type ResourceReference
 FieldValue FieldValue.analysis(ResourceReference analysis)
           
 

Uses of ResourceReference in org.gedcomx.rt
 

Methods in org.gedcomx.rt with parameters of type ResourceReference
static ExtensibleData GedcomxLocalReferenceResolver.resolve(ResourceReference ref, Gedcomx document)
           
 

Uses of ResourceReference in org.gedcomx.source
 

Methods in org.gedcomx.source that return ResourceReference
 ResourceReference SourceDescription.getAnalysis()
          A reference to the analysis document explaining the analysis that went into this description of the source.
 ResourceReference SourceCitation.getCitationTemplate()
          A reference to the citation template for this citation.
 ResourceReference SourceDescription.getDescriptorRef()
          Reference to a descriptor of fields and type of data that can be expected to be extracted from the source.
 ResourceReference SourceDescription.getMediator()
          A reference to the entity that mediates access to the described source.
 ResourceReference SourceDescription.getRepository()
          Reference to an agent describing the repository in which the source is found.
 

Methods in org.gedcomx.source with parameters of type ResourceReference
 SourceDescription SourceDescription.analysis(ResourceReference analysis)
          Build out this source description with an analyis.
 SourceCitation SourceCitation.citationTemplate(ResourceReference citationTemplate)
          Build out this source citation with a template.
 SourceDescription SourceDescription.descriptorRef(ResourceReference descriptorRef)
          Build out this source description with a descriptor ref.
 SourceDescription SourceDescription.mediator(ResourceReference mediator)
          Build out this source description with a mediator.
 SourceDescription SourceDescription.repository(ResourceReference repository)
          Build out this source description with a repository.
 void SourceDescription.setAnalysis(ResourceReference analysis)
          A reference to the analysis document explaining the analysis that went into this description of the source.
 void SourceCitation.setCitationTemplate(ResourceReference citationTemplate)
          A reference to the citation template for this citation.
 void SourceDescription.setDescriptorRef(ResourceReference descriptorRef)
          Reference to a descriptor of fields and type of data that can be expected to be extracted from the source.
 void SourceDescription.setMediator(ResourceReference mediator)
          A reference to the entity that mediates access to the described source.
 void SourceDescription.setRepository(ResourceReference repository)
          Reference to an agent describing the repository in which the source is found.
 

Uses of ResourceReference in org.gedcomx.util
 

Methods in org.gedcomx.util with parameters of type ResourceReference
 Person DocMap.getPerson(ResourceReference resourceReference)
          Get the person from the GedcomX document that has the id given in the URI of the given ResourceReference.
 



Copyright © 2015. All rights reserved.