Skip to content

Commit

Permalink
#181 fix rdoc for CIT classes
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Dec 9, 2024
1 parent 8980579 commit 0b4aa75
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions R/ISOAddress.R
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ ISOAddress <- R6Class("ISOAddress",

#'@description Adds delivery point
#'@param deliveryPoint delivery point
#'@param locales list of localized names
#'@return \code{TRUE} if added, \code{FALSE} otherwise
addDeliveryPoint = function(deliveryPoint, locales = NULL){
self$stopIfMetadataStandardIsNot("19115-3")
Expand All @@ -76,6 +77,7 @@ ISOAddress <- R6Class("ISOAddress",

#'@description Deletes delivery point
#'@param deliveryPoint delivery point
#'@param locales list of localized names
#'@return \code{TRUE} if added, \code{FALSE} otherwise
delDeliveryPoint = function(deliveryPoint, locales = NULL){
self$stopIfMetadataStandardIsNot("19115-3")
Expand Down Expand Up @@ -131,6 +133,7 @@ ISOAddress <- R6Class("ISOAddress",

#'@description Adds email
#'@param email email
#'@param locales list of localized names
#'@return \code{TRUE} if added, \code{FALSE} otherwise
addEmail = function(email, locales = NULL){
self$stopIfMetadataStandardIsNot("19115-3")
Expand All @@ -143,6 +146,7 @@ ISOAddress <- R6Class("ISOAddress",

#'@description Deletes email
#'@param email email
#'@param locales list of localized names
#'@return \code{TRUE} if deleted, \code{FALSE} otherwise
delEmail = function(email, locales = NULL){
self$stopIfMetadataStandardIsNot("19115-3")
Expand Down
2 changes: 1 addition & 1 deletion R/ISOSeries.R
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ ISOSeries <- R6Class("ISOSeries",
},

#'@description Set page
#'@param page
#'@param page page
#'@param locales list of localized titles. Default is \code{NULL}
setPage = function(page, locales = NULL){
self$page <- page
Expand Down
8 changes: 8 additions & 0 deletions man/ISOAddress.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions man/ISOSeries.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0b4aa75

Please sign in to comment.