R/ISOAbstractContentInformation.R

#' ISOAbstractContentInformation
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#' @keywords ISO abstract content information
#' @return Object of \code{\link{R6Class}} for modelling an ISO abstract content information
#' @format \code{\link{R6Class}} object.
#'   
#' @references 
#'   - ISO 19115-3 \url{https://schemas.isotc211.org/19115/-3/mcc/1.0/mcc/#element_Abstract_ContentInformation}
#' 
#' @author Emmanuel Blondel <emmanuel.blondel1@@gmail.com>
#'
ISOAbstractContentInformation <- R6Class("ISOAbstractContentInformation",
    inherit = ISOAbstractObject,
    private = list(
      xmlElement = "Abstract_ContentInformation",
      xmlNamespacePrefix = list(
        "19115-3" = "MCC"
      )
    ),
    public = list(
      
      #'@description Initializes object
      #'@param xml object of class \link{XMLInternalNode-class}
      initialize = function(xml = NULL){
        super$initialize(xml = xml)
      }
    )                        
)
eblondel/geometa documentation built on Oct. 10, 2024, 4:46 p.m.