-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
82 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/Class-SDMXType.R, R/SDMXType-methods.R | ||
\docType{class} | ||
\name{SDMXType} | ||
\alias{SDMXType} | ||
\alias{SDMXType,SDMXType-method} | ||
\alias{SDMXType-class} | ||
\title{Class "SDMXType"} | ||
\usage{ | ||
SDMXType(xmlObj) | ||
} | ||
\arguments{ | ||
\item{xmlObj}{object of class "XMLInternalDocument derived from XML package} | ||
} | ||
\value{ | ||
an object of class "SDMXType" | ||
} | ||
\description{ | ||
A basic class to handle the type of a SDMX-ML document | ||
} | ||
\section{Slots}{ | ||
\describe{ | ||
\item{\code{type}}{Object of class "character" giving the type of the SDMX-ML document} | ||
}} | ||
\note{ | ||
At now, the following types have been implemented and successfully tested: | ||
- \code{StructureType}, | ||
- \code{GenericDataType}, | ||
- \code{CompactDataType}, | ||
- \code{StructureSpecificDataType}, | ||
- \code{UtilityDataType}, | ||
- \code{MessageGroupType} | ||
} | ||
\section{Warning}{ | ||
this class is not useful in itself, but all SDMX non-abstract classes will | ||
encapsulate it as slot, when parsing an SDMX-ML document. | ||
} | ||
\author{ | ||
Emmanuel Blondel, \email{emmanuel.blondel1@gmail.com} | ||
} | ||
\seealso{ | ||
\link{readSDMX} | ||
} | ||