File: Class-SDMXOrganisationScheme.R

package info (click to toggle)
r-cran-rsdmx 1%3A0.6-5%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,024 kB
  • sloc: sh: 14; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#' @name SDMXOrganisationScheme
#' @docType class
#' @aliases SDMXOrganisationScheme-class
#' 
#' @title Class "SDMXOrganisationScheme"
#' @description A basic abstract class to handle a SDMXOrganisationScheme
#'
#' @section Information:
#' This class is implemented in both SDMX 2.0 and 2.1. In the latter, it is
#' extended by other specific classes such as AgencyScheme, DataConsumerScheme,
#' DataProviderScheme and OrganisationUnitScheme. \pkg{rsdmx} covers the support
#' in SDMX 2.1
#'                    
#' @author Emmanuel Blondel, \email{emmanuel.blondel1@@gmail.com}
#' 
setClass("SDMXOrganisationScheme",
         contains = "SDMXItemScheme",
         representation(),
         prototype = list(),
         validity = function(object){  
           return(TRUE);
         }
)