Learn R Programming

RDAVIDWebService (version 1.10.0)

setEmail: Accessor methods for DAVIDWebService class

Description

Setter/getters for DAVIDWebService class fields.

Usage

setEmail(object, mail)
"setEmail"(object, mail)
"setEmail"(mail)
getEmail(object)
"getEmail"(object)
getStub(object)
"getStub"(object)

Arguments

object
DAVIDWebService class object.
mail
character with a registered e-mail account at DAVID's website.

Value

according to the call one of the following objects can be returned
setEmail
character with the given e-mail to set.
getEmail
character with the e-mail under use.
getstub
jobjRef object with the stub java object to interface with DAVID API.

Details

Note that DAVIDWebService is a Reference class, hence invoke it using object_name$setter/getter(parameters). In addition, the user can use the S4 version style function call.

References

  1. DAVID web http://david.abcc.ncifcrf.gov
  2. DAVID API http://david.abcc.ncifcrf.gov/content.jsp?file=WS.html

See Also

Other DAVIDWebService: DAVIDWebService-class, addList, addList, connect, connect, getAllAnnotationCategoryNames, getAllAnnotationCategoryNames, getAnnotationSummary, getAnnotationSummary, getBackgroundListNames, getBackgroundListNames, getClusterReport, getClusterReport, getClusterReportFile, getClusterReportFile, getCurrentBackgroundListPosition, getCurrentBackgroundListPosition, getCurrentGeneListPosition, getCurrentGeneListPosition, getCurrentSpeciesPosition, getCurrentSpeciesPosition, getDefaultCategoryNames, getDefaultCategoryNames, getFunctionalAnnotationChart, getFunctionalAnnotationChart, getFunctionalAnnotationChartFile, getFunctionalAnnotationChartFile, getFunctionalAnnotationTable, getFunctionalAnnotationTable, getFunctionalAnnotationTableFile, getFunctionalAnnotationTableFile, getGeneCategoriesReport, getGeneCategoriesReport, getGeneListNames, getGeneListNames, getGeneListReport, getGeneListReport, getGeneListReportFile, getGeneListReportFile, getIdTypes, getIdTypes, getListName, getListName, getSpecieNames, getSpecieNames, is.connected, is.connected, setAnnotationCategories, setAnnotationCategories, setCurrentBackgroundPosition, setCurrentBackgroundPosition(position), setCurrentGeneListPosition, setCurrentGeneListPosition, setCurrentSpecies, setCurrentSpecies, summary, summary, summary, summary

Examples

Run this code
{
##Create a DAVIDWebService object
david<-DAVIDWebService$new()

##Invoke Reference class style function setter/getters
david$setEmail("valid_mail@david.org")
david$getEmail()
stub<-david$getStub()

##Or the equivalent S4 style function call setter/getters
setEmail(david, "valid_mail@david.org")
getEmail(david)
stub<-getStub(david)
}

Run the code above in your browser using DataLab