Examples of addLanguages()


Examples of jade.domain.FIPAAgentManagement.ServiceDescription.addLanguages()

       
        // Service ontologies
        pss.stm_selServiceOntologies.setString(1, serviceId);
        rsS = pss.stm_selServiceOntologies.executeQuery();
        while(rsS.next()){
          sd.addLanguages(rsS.getString(LANGUAGE));
        }
        closeResultSet(rsS);
       
        // Service properties
        pss.stm_selServiceProperties.setString(1, serviceId);
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.PatientUniversal.addLanguages()

    template.setSex(Sex._Male);
    template.setBirthTime(new DateValue("19490101"));
    // Language
    LanguageCommunication language = new LanguageCommunication();
    language.setLanguage(HumanLanguage._en.code);
    template.addLanguages(language);
    // Organisation - Registered GP:
    template.setRegisteredGPOrgId(new OrgID()
                  .setID("V396F")
                  .setType(OrgIDType.ODSOrgID.code));
    template.setRegisteredGPOrgName("Medway Medical Practice");
View Full Code Here

Examples of uk.nhs.interoperability.payloads.templates.PatientUniversal.addLanguages()

    LanguageCommunication language = new LanguageCommunication();
    language.setLanguage(HumanLanguage._en.code);
    //language.setMode(LanguageAbilityMode._ESP);
    language.setProficiencyLevel(LanguageAbilityProficiency._0);
    //language.setPreferenceIndNullFlavour(NullFlavour.NotAsked.code);
    template.addLanguages(language);
    // Organisation - Registered GP:
    template.setRegisteredGPOrgId(new OrgID()
                  .setID("V396F")
                  .setType(OrgIDType.ODSOrgID.code));
    template.setRegisteredGPOrgName("Dr De Hopper and Partners");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.