Skip to content

Commit

Permalink
#401 rdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Jan 6, 2025
1 parent 972a068 commit 941387d
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 18 deletions.
26 changes: 14 additions & 12 deletions R/geoflow_vocabulary.R
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#' geoflow_vocabulary
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#'
#' @name geoflow_vocabulary
#' @title Geoflow vocabulary class
#' @description This class models a vocabulary
#' @keywords action
#' @return Object of \code{\link{R6Class}} for modelling a vocabulary
#' @format \code{\link{R6Class}} object.
#' @docType class
#' @importFrom R6 R6Class
#' @export
#'
#' @keywords vocabulary
#' @return Object of \code{\link[R6]{R6Class}} for modelling a vocabulary
#' @format \code{\link[R6]{R6Class}} object.
#'
geoflow_vocabulary <- R6Class("geoflow_vocabulary",
public = list(
Expand Down Expand Up @@ -37,22 +37,24 @@ geoflow_vocabulary <- R6Class("geoflow_vocabulary",
self$software_type = software_type
},

setSoftware = function(sofware){

#'@name Set software
#'@param software software
setSoftware = function(software){
#TODO
}
)
)

#' geoflow_skos_vocabulary
#'
#'
#' @docType class
#' @importFrom R6 R6Class
#' @export
#'
#' @name geoflow_skos_vocabulary
#' @title Geoflow SKOS vocabulary class
#' @description This class models a SKOS vocabulary
#' @keywords action
#' @keywords skos vocabulary
#' @return Object of \code{\link{R6Class}} for modelling a SKOS vocabulary
#' @format \code{\link{R6Class}} object.
#'
Expand Down Expand Up @@ -93,7 +95,7 @@ geoflow_skos_vocabulary <- R6Class("geoflow_skos_vocabulary",
httr::content(req)
},

#'@name ping
#'@description Ping query
ping = function(){
str = "SELECT ?s ?p ?o WHERE {
?s ?p ?o
Expand Down
18 changes: 18 additions & 0 deletions man/geoflow_entity.Rd

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

54 changes: 52 additions & 2 deletions man/geoflow_skos_vocabulary.Rd

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

43 changes: 39 additions & 4 deletions man/geoflow_vocabulary.Rd

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

0 comments on commit 941387d

Please sign in to comment.